View Full Version : Free Plugin : AutoIt Plugin
AMSWaves
03-19-2009, 08:55 AM
Hi All,
My Site Go up, thanks All.;)
AMSWaves Release New Plugin.
This Plugin created for Autoplay Media Studio and provide some method of AutoIt (http://www.autoitscript.com/autoit3/index.shtml) (not All of them).
This Plugin depends on AutoIt X.
AutoIt X Version: 3.2.12.1
AMSWAutoIt Version: 1.0.0.0
Use And Enjoy! ;)
Download (http://www.amswaves.com/index.php?option=com_content&view=article&id=51&Itemid=55)
Email (support@AMSWaves.com)
jackdaniels
03-19-2009, 10:16 AM
Thanks for plugin AMSWaves :yes:yes:yes
Great Work
actionstk..
03-19-2009, 11:00 AM
:eek: very very good..!! thank for nice plugin.. :yes
ShadowUK
03-20-2009, 01:32 AM
Amazing, Simply amazing.
Imagine Programming
03-20-2009, 06:32 AM
Thanks, great plugin!
S0mbre
03-25-2009, 12:47 AM
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... :) :)
Desrat
03-25-2009, 04:25 AM
gotta say this will greatly enhance my projects, many thx fella..
Samio
03-27-2009, 11:50 AM
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:
for x=0,255 do
AutoIt.WinSetTrans("MyApp", "", x)
Application.Sleep(1);
end
jassing
03-27-2009, 08:17 PM
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
shanex252
03-28-2009, 04:49 AM
you are perfect.Your plugin is perfect.Good jop:yes :yes
AMSWaves
03-31-2009, 04:55 AM
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
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
hi jassing,
Ok i test this plugin on SUF and good worked.
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:
for x=0,255 do
AutoIt.WinSetTrans("MyApp", "", x)
Application.Sleep(1);
end
Hi Samio,
sometimes this is easy with title but this a good suggestion in the next version i add GetWindowTitle for use on these action.
AMSWaves
03-31-2009, 08:42 AM
Some Example for this powerful Plugin
Example 1 :
AutoIt.Sleep(1000)
AutoIt.Run("notepad.exe", "", 1);
AutoIt.WinWaitActive("Untitled -", "", 0);
AutoIt.Opt("SendKeyDelay", 100);
AutoIt.Send("Hello{!}", 0);
Example 2 :
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);
Example 3 :
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);
Example 4 :
AutoIt.MouseClickDrag("left", 0, 200, 600, 700, 10)
Example 5 :
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)
if anybody have a good example for show power of this plugin and AutoIt, Please Post it.
Thanks.
Tomasin
05-05-2009, 08:48 AM
WOW :yes:yes:yes
Really good this plugin!! AND FREE!!! :yes:yes:yes:eek:
It's possible add sys hibernate and standby functions?
THX
(waiting for next version if is possible and more functions)
mwreyf1
05-05-2009, 11:07 AM
How about adding more network functions that are native to AutoIt3 such as PING and TCPIP?
mwreyf1
05-06-2009, 04:09 PM
Disregard last request.
I now see why you did not include those features.
AutoItX does not support that.
Again, good work on the AutoIt plug-in.
Thanks
malhajri2006
05-07-2009, 09:18 AM
thanks for the plugin
Tomasin
05-08-2009, 08:01 AM
IMPORTANT PROBLEM
I using AutoIt and Script plugins from AMSWAre... my proyect is multipage (20 pages)...
If use Autoit.close (on close event on one page) this close the application :eek::eek::huh but you needed get anodher page... :huh
And add on shotdown event not is recomend? :huh
On vista 64, on intent of run the application this show error impobible run the application error detected.
This is caused by autoit and script plugins...
Rog Cod
05-11-2009, 08:35 AM
Anyone have examples on using this plug-in?
I would like to see the following:
1. Example on coping a files over a network mapped drive and test the size or bytes.
2. Copy a file by date modified and size using a dialog to choice the date.
3. Copy a file by modified date using a start date and a end date with dialog.
4. Check a folder listing and move to another folder for backup based on files date and or name.
Anyone kind, and can take time to make some examples like these, please.
AMSWaves
05-12-2009, 10:32 AM
Hi Tomasin
IMPORTANT PROBLEM
I using AutoIt and Script plugins from AMSWAre... my proyect is multipage (20 pages)...
If use Autoit.close (on close event on one page) this close the application :eek::eek::huh but you needed get anodher page... :huh
And add on shotdown event not is recomend? :huh
yea for this project that have multipage this is better to add AutoIt.Close() on Shutdown.
On vista 64, on intent of run the application this show error impobible run the application error detected.
This is caused by autoit and script plugins...
I have a question ? are you sure AutoPlay Media Studio works well on 64 Bits Windowses.
because this plugin just work on 32 bits version of windows.
Tomasin
05-12-2009, 03:02 PM
yes, on xp/vista 64 AMS works fine, but only not work correctly dialog.filebrowse and dialog.folderborwse.
If use autoit or script plugins in VISTA (32/64) or xp (64) the application not run.
Draygoes
05-16-2009, 02:56 AM
THIS PLUGIN HAS MADE MY DAY!:D
AutoIT is my Favorite scripting language. I have been using it for years.
I came to love AMS as well. Each language has advantages and disadvantages.
Sorry, I will speak of this more later, I am so excited about this I MUST use it now!
EDIT
Aw man! It looks like the site is down. Does anyone have a copy of the files for download???
Draygoes
05-23-2009, 12:02 AM
Well, the homepage has been down for quite a while now, so does anyone have an extra copy of this zip file?
MicroByte
05-23-2009, 08:48 AM
@Draygoes
here you go :yes
Draygoes
05-26-2009, 03:29 AM
Thanks! This is great! :D
SteevieNiteHeat
07-23-2009, 06:30 AM
It dont work for me :S
When I click on the pull down actions menu, they aint listed, why is this?
mwreyf1
07-23-2009, 02:11 PM
Open Autoplay and go to the top menu bar and under Project > Plugins put a checkmark in AutoIt.
Now open your Actions window and they should be there.
SteevieNiteHeat
11-03-2009, 05:41 PM
Erm, what is the key code for the blue Fn key on laptop keyboards?
I need a sendkey for Fn+F5 & Fn+F9 etc... can some1 shed some light please?
leshter
11-04-2009, 03:03 PM
Thank you so much for this wonderful plugin, now I can call on external apps and easily send keys, better than using lua, I'll say that much.
vBulletin® v3.8.4, Copyright ©2000-2009, Jelsoft Enterprises Ltd.