Mistake Posted December 2, 2008 Share Posted December 2, 2008 how can retrive the keypressed from msgbox()? Link to comment Share on other sites More sharing options...
AlmarM Posted December 2, 2008 Share 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. Link to comment Share on other sites More sharing options...
Mistake Posted December 2, 2008 Author Share 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 Link to comment Share on other sites More sharing options...
jzachariasen Posted December 2, 2008 Share 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. Link to comment Share on other sites More sharing options...
Mistake Posted December 2, 2008 Author Share 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 Link to comment Share on other sites More sharing options...
PsaltyDS Posted December 2, 2008 Share 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 Link to comment Share on other sites More sharing options...
Mistake Posted December 2, 2008 Author Share Posted December 2, 2008 ok work.... tnx 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