fury0n Posted April 10, 2014 Share Posted April 10, 2014 I'm not too familiar with AutoIt just yet and I'm doing my best to learn. How would I do to make a script which at the start open up a message box where you can input with the question i.e. "What would you like the script send?" Let's pretend I type in yellow, and then it would type out the word yellow. Thanks, fury0n Link to comment Share on other sites More sharing options...
AlmarM Posted April 10, 2014 Share Posted April 10, 2014 InputBox. 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...
Tioner Posted April 10, 2014 Share Posted April 10, 2014 $var = InputBox("Title","What would you like to send") msgbox(0,"Title",$var) Link to comment Share on other sites More sharing options...
fury0n Posted April 10, 2014 Author Share Posted April 10, 2014 InputBox. $var = InputBox("Title","What would you like to send") msgbox(0,"Title",$var) Thanks you two! 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