Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Page 1 of 4 1 2 3 ... LastLast
Results 1 to 15 of 46
  1. #1
    Join Date
    Jun 2008
    Location
    AMSWaves
    Posts
    231

    Lightbulb Free Plugin : AutoIt Plugin

    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 (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

    Email

  2. #2
    Join Date
    Mar 2007
    Location
    HeaveN
    Posts
    534
    Thanks for plugin AMSWaves
    Great Work

  3. #3
    Join Date
    Oct 2008
    Posts
    21
    very very good..!! thank for nice plugin..

  4. #4
    Join Date
    Oct 2007
    Location
    Gensokyo
    Posts
    1,324
    Amazing, Simply amazing.

  5. #5
    Join Date
    Apr 2007
    Location
    Raalte, OV, Netherlands
    Posts
    3,287
    Thanks, great plugin!
    Bas Groothedde
    Imagine Programming :: Blog :: Familiar people here

    My AMS Plugins:

  6. #6
    Join Date
    Jan 2008
    Location
    Ufa, Russia
    Posts
    128
    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...

  7. #7
    Join Date
    Nov 2006
    Posts
    233
    gotta say this will greatly enhance my projects, many thx fella..

  8. #8
    Join Date
    Nov 2006
    Location
    Tehran
    Posts
    176
    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

  9. #9
    Join Date
    Jan 2001
    Location
    Anderson Island, WA, USA
    Posts
    2,863
    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


    (Click here to contact me)
    Providing Independent Professional Consulting Services for
    IndigoRose products, World Wide.
    Located in -8:00 (-7:00 DST) GMT Timezone (Western United States)

  10. #10
    Join Date
    Aug 2008
    Posts
    29
    you are perfect.Your plugin is perfect.Good jop

  11. #11
    Join Date
    Jun 2008
    Location
    AMSWaves
    Posts
    231

    Smile 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

    Quote Originally Posted by jassing View Post
    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.

    Quote Originally Posted by Samio View Post
    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
    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.

  12. #12
    Join Date
    Jun 2008
    Location
    AMSWaves
    Posts
    231

    Smile 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);
    Example 2 :
    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);
    Example 3 :
    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);
    Example 4 :
    Code:
    AutoIt.MouseClickDrag("left", 0, 200, 600, 700, 10)
    Example 5 :
    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)
    if anybody have a good example for show power of this plugin and AutoIt, Please Post it.
    Thanks.

  13. #13
    Join Date
    Jan 2009
    Posts
    172
    WOW

    Really good this plugin!! AND FREE!!!

    It's possible add sys hibernate and standby functions?

    THX

    (waiting for next version if is possible and more functions)

  14. #14
    Join Date
    Aug 2004
    Location
    Somewhere in Texas, USA
    Posts
    417
    How about adding more network functions that are native to AutoIt3 such as PING and TCPIP?
    Last edited by mwreyf1; 05-05-2009 at 10:10 AM.

  15. #15
    Join Date
    Aug 2004
    Location
    Somewhere in Texas, USA
    Posts
    417
    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

+ Reply to Thread
Page 1 of 4 1 2 3 ... LastLast

Similar Threads

  1. FREE : IExplorer Object Plugin
    By reteset in forum AutoPlay Media Studio 7.5 Plugins
    Replies: 88
    Last Post: 5 Days Ago, 03:08 AM
  2. Free Plugin : ID3Tag Plugin
    By AMSWaves in forum AutoPlay Media Studio 7.5 Plugins
    Replies: 19
    Last Post: 12-03-2010, 02:46 PM
  3. FREE: UserMgmt Action Plugin
    By TimeSurfer in forum AutoPlay Media Studio 7.5
    Replies: 3
    Last Post: 04-11-2010, 09:21 PM
  4. FREE : Timer Object Plugin
    By reteset in forum AutoPlay Media Studio 7.5 Plugins
    Replies: 29
    Last Post: 04-23-2009, 07:00 AM
  5. Free Plugin: Media Player Object
    By Ted Sullivan in forum AutoPlay Media Studio 5.0
    Replies: 7
    Last Post: 09-24-2004, 02:54 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts