Jump to content

Where is a good place to start learning autoit


Recommended Posts

the included help file works great. New commers to scripting in general may also like http://www.autoitscript.com/forum/index.php?showtopic=21048 which is very detailed and geared towards new users.

Thanks! I know a few diff script langs, html, php, flash action, some asp and back in the day learned some langs but I wish to learn this now, seems like a very useful tool :whistle:

Link to comment
Share on other sites

If you have any questions or can't find something in the help file. Post here, AutoIt has a very helpful user community. They have helped me tons of times. I am always willing to pass along the things I have learned.

Link to comment
Share on other sites

#include <GUIConstants.au3>

GUICreate("My GUI picture")

$pic = GUICtrlCreatePic(@Systemdir & "\oobe\images\mslogo.jpg",50,50, 200,50)

GUISetState ()

; Run the GUI until the dialog is closed
While 1
    $msg = GUIGetMsg()
    
    If $msg = $pic Then ShellExecute("www.Autoit3.com")
    
    If $msg = $GUI_EVENT_CLOSE Then ExitLoop
Wend

8)

wow thank you, this is my 1st day and I'm already learning so much!

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...