forger Posted April 7, 2006 Share Posted April 7, 2006 (edited) Is it possible to select the default (focused) action (or in this case, click the appropriate button) after the timer runs out? $yesno = MsgBox(4+32,"Restart","Restart now? (Recommended)",30) If $yesno = 6 Then MsgBox("","","You clicked yes",30) EndIf Never mind, found it: $yesno = MsgBox(4+32,"Restart","Restart now? (Recommended)",30) If $yesno = 6 Or $yesno = -1 Then MsgBox("","","You clicked yes",30) EndIf Edited April 7, 2006 by forger Link to comment Share on other sites More sharing options...
Moderators SmOke_N Posted April 7, 2006 Moderators Share Posted April 7, 2006 What is "- 1 for? Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer. Link to comment Share on other sites More sharing options...
forger Posted April 7, 2006 Author Share Posted April 7, 2006 Failure: Returns -1 if the message box timed out. Link to comment Share on other sites More sharing options...
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