Jump to content

Msgbox Default Action After Timeout


Recommended Posts

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 by forger
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...