evilertoaster Posted July 9, 2007 Posted July 9, 2007 (edited) 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. Edited July 9, 2007 by evilertoaster
xenium Posted July 9, 2007 Author Posted July 9, 2007 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
dufran3 Posted July 9, 2007 Posted July 9, 2007 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.
xenium Posted July 10, 2007 Author Posted July 10, 2007 (edited) okay I asked a question here:http://www.autoitscript.com/forum/index.php?showtopic=49188"as in places an image, GuiCtrlCreatePic, but also apply a clickable link to that pic, er web link to open into a browser?" Edited July 10, 2007 by xenium
Valuater Posted July 10, 2007 Posted July 10, 2007 #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)
xenium Posted July 10, 2007 Author Posted July 10, 2007 #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!
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now