Mistake Posted December 2, 2008 Posted December 2, 2008 how can retrive the keypressed from msgbox()?
AlmarM Posted December 2, 2008 Posted December 2, 2008 http://www.autoitscript.com/autoit3/docs/f...ions/MsgBox.htmAlmarM Minesweeper A minesweeper game created in autoit, source available. _Mouse_UDF An UDF for registering functions to mouse events, made in pure autoit. 2D Hitbox Editor A 2D hitbox editor for quick creation of 2D sphere and rectangle hitboxes.
Mistake Posted December 2, 2008 Author Posted December 2, 2008 (edited) i have read this... Success: Returns the ID of the button pressed. Failure: Returns -1 if the message box timed out. but dont how can retrive it... Edited December 2, 2008 by Mistake
jzachariasen Posted December 2, 2008 Posted December 2, 2008 Something like this? $variable1 = InputBox ( "Input box title", "Input box question", 0) MsgBox( 0, "msgbox title", $variable1) In short, create a variable from the inputbox input and call it with the variable.
Mistake Posted December 2, 2008 Author Posted December 2, 2008 mmmm i have this for exaple: msgbox(10,"test","dsadsadsadsdsdsa") i want do an action if user press cancel or ok whit an if
PsaltyDS Posted December 2, 2008 Posted December 2, 2008 mmmm i have this for exaple: msgbox(10,"test","dsadsadsadsdsdsa") i want do an action if user press cancel or ok whit an if "10" is not a valid MsgBox(), but it is the return value for "Try Again" (see the help file). You can run it and get the response like this: $iResponse = MsgBox(6, "test", "dsadsadsadsdsdsa") If $iResponse = 10 Then MsgBox(64, "Try Again", "OK, we'll try again...") Else MsgBox(16, "Quit", "I give up.") EndIf SorryButImaNewbie and AutoSam 2 Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
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