Announcement

Collapse
No announcement yet.

Free Plugin : AutoIt Plugin

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • 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
    Thanks for plugin AMSWaves :yes:yes:yes
    Great Work

    Comment


    • #3
      very very good..!! thank for nice plugin.. :yes

      Comment


      • #4
        Amazing, Simply amazing.

        Comment


        • #5
          Thanks, great plugin!
          Bas Groothedde
          Imagine Programming :: Blog

          AMS8 Plugins
          IMXLH Compiler

          Comment


          • #6
            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


            • #7
              gotta say this will greatly enhance my projects, many thx fella..

              Comment


              • #8
                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


                • #9
                  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


                  • #10
                    you are perfect.Your plugin is perfect.Good jop:yes :yes

                    Comment


                    • #11
                      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 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.

                      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.

                      Comment


                      • #12
                        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.

                        Comment


                        • #13
                          WOW :yes:yes:yes

                          Really good this plugin!! AND FREE!!! :yes:yes:yes

                          It's possible add sys hibernate and standby functions?

                          THX

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

                          Comment


                          • #14
                            How about adding more network functions that are native to AutoIt3 such as PING and TCPIP?
                            Last edited by mwreyf1; 05-05-2009, 10:10 AM.

                            Comment


                            • #15
                              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

                              Comment

                              Working...
                              X