Announcement
Collapse
No announcement yet.
Free Plugin : AutoIt Plugin
Collapse
X
-
It is really a great plugin! Given that AutoIt3 affords virtually all WinAPI / GUI functionality (greatly enhanced by UDFs forged by its huge community) and has a very easy-to-learn script language, one step to rival its competetiveness with AMS is to actually incorporate AutoIt into AMS!Personally, I have great respect for AutoIt as an automation tool (I've used some others like NetworkAutomation Automate 6, but those ones don't normally allow EXE compiling). However, AMS is my tradition, and no other environment could replace it. I am only happy to see it being ever replenished and enriched by more and more plugins and add-ons...
Comment
-
Hi Friends and Thanks dare AMSWaves for this useful plug-in.
I have a suggestion.
if (AutoIt.WinSetTrans) action or similar action set with Windows Handle is better.
if use loop action and user click on the another program, this action set active windows.
Example:
Code:for x=0,255 do AutoIt.WinSetTrans("MyApp", "", x) Application.Sleep(1); end
Comment
-
Great plugin -- Very nice.
I would suggest you promote it in the other forums as well. I have a client that I wrote several autoit scripts to perform some tasks -- they didn't like that it was a secondary exe running; this would have made them very happy.
Good job!
-josh
Comment
-
Thanks
Hi All thanks for reply
when you say thanks for this plugin i ( my partner for now go to another country ) feel good, and when you dont say thanks i think our plugins dont have any benefit, so if you love some of our plugin buy them with say a thanks :lol
Originally posted by jassing View PostGreat plugin -- Very nice.
I would suggest you promote it in the other forums as well. I have a client that I wrote several autoit scripts to perform some tasks -- they didn't like that it was a secondary exe running; this would have made them very happy.
Good job!
-josh
Ok i test this plugin on SUF and good worked.
Originally posted by Samio View PostHi Friends and Thanks dare AMSWaves for this useful plug-in.
I have a suggestion.
if (AutoIt.WinSetTrans) action or similar action set with Windows Handle is better.
if use loop action and user click on the another program, this action set active windows.
Example:
Code:for x=0,255 do AutoIt.WinSetTrans("MyApp", "", x) Application.Sleep(1); end
sometimes this is easy with title but this a good suggestion in the next version i add GetWindowTitle for use on these action.
Comment
-
Example
Some Example for this powerful Plugin
Example 1 :
Code:AutoIt.Sleep(1000) AutoIt.Run("notepad.exe", "", 1); AutoIt.WinWaitActive("Untitled -", "", 0); AutoIt.Opt("SendKeyDelay", 100); AutoIt.Send("Hello{!}", 0);
Code:AutoIt.Run("notepad.exe", "", 1); AutoIt.WinWaitActive("Untitled - Notepad", "", 0); AutoIt.Opt("SendKeyDelay", 100); AutoIt.Send("Hello from Notepad.{ENTER}1 2 3 4 5 6 7 8 9 10{ENTER}", 0); AutoIt.Sleep(500) AutoIt.Send("+{UP 2}", 0); AutoIt.Sleep(500) AutoIt.Send("!f", 0); AutoIt.Send("x", 0); AutoIt.WinWaitActive("Notepad", "", 0); AutoIt.Send("n", 0); AutoIt.WinWaitClose("Untitled - Notepad", "", 0);
Code:AutoIt.Run("notepad.exe", "", 1); AutoIt.WinWaitActive("Untitled - Notepad", "", 0); AutoIt.Opt("SendKeyDelay", 100); AutoIt.Send("Sending some special characters:{ENTER 2}", 0); AutoIt.Send("First way: ", 0); AutoIt.Send("{!}{^}{+}{#}", 0); AutoIt.Send("{ENTER}", 0); AutoIt.Send("Second way: ", 0); AutoIt.Send("!^+#", 1); AutoIt.Send("{ENTER}{ENTER}Finished", 0);
Code:AutoIt.MouseClickDrag("left", 0, 200, 600, 700, 10)
Code:Dialog.Message("Notice", "This script will run the calculator and type in 2 x 4 x 8 x 16 and then quit."); AutoIt.Run("calc.exe", "", 1); AutoIt.WinWaitActive("Calculator", "", 0); AutoIt.Opt("SendKeyDelay", 400); AutoIt.Send("2*4*8*16=", 0); AutoIt.Sleep(2000); AutoIt.WinClose("Calculator", "") AutoIt.WinWaitClose("Calculator", "", 0)
Thanks.
Comment
Comment