fury0n Posted April 10, 2014 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
AlmarM Posted April 10, 2014 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.
Tioner Posted April 10, 2014 Posted April 10, 2014 $var = InputBox("Title","What would you like to send") msgbox(0,"Title",$var)
fury0n Posted April 10, 2014 Author Posted April 10, 2014 InputBox. $var = InputBox("Title","What would you like to send") msgbox(0,"Title",$var) Thanks you two!
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