rizal Posted July 16, 2011 Posted July 16, 2011 i'm still new to autoit. can u guys help me to solve my problem. i'm running a script using a software. if the script pass, it will popup a windows box that show "Pass". if it failed it will show "Failed" popup box. how do i captured the popup box? if "Pass" popup box appear,autoit can continue to open other program, and if it failed, it will exit the program after 10 seconds. Please help me...
Maffe811 Posted July 16, 2011 Posted July 16, 2011 (edited) why do you wanna capture messageboxes ? why don't you just write an if-else statement ? Global $Variable = 0 If $Variable = 1 then MsgBox("","","Pass!") ;Code if it passes Else MsgBox("","","Fail!") ;Code if it fails TrayTip("Counter","3",300,1) Sleep(500) TrayTip("Counter","2",300,1) Sleep(500) TrayTip("Counter","1",300,1) Sleep(500) TrayTip("Counter","0",300,1) Sleep(500) Exit EndIf Edited July 16, 2011 by Maffe811 [font="helvetica, arial, sans-serif"]Hobby graphics artist, using gimp.Automating pc stuff, using AutoIt.Listening to music, using Grooveshark.[/font]Scripts:[spoiler]Simple ScreenshotSaves you alot of trouble when taking a screenshot!Don't remember what happened with this, but aperantly the exe is all i got.If you don't want to run it, simply don't._IsRun UDFIt figures out if the script has ben ran before based on the info in a ini file.If you don't want to use exactly what i wrote, you can use it as inspiration.[/spoiler]
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