Moja Posted April 28, 2004 Posted April 28, 2004 Hello, I was wondering if it possible to bring up a box, when the .exe file is clicked where text could be inserted, and then for this text to then put itself into a certain section of the script. If that makes sense o_O Moja
Developers Jos Posted April 28, 2004 Developers Posted April 28, 2004 Hello, I was wondering if it possible to bring up a box, when the .exe file is clicked where text could be inserted, and then for this text to then put itself into a certain section of the script. If that makes sense o_OMojaYes... i think But maybe you need to explain what you want to accomplish...... SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Moja Posted April 28, 2004 Author Posted April 28, 2004 Hmm, well basically, i wanna be able to control the Send("x") command in a certain part of the script without actually having to go into the script and changing it manually. Moja
Developers Jos Posted April 28, 2004 Developers Posted April 28, 2004 $input = InputBox('title', 'enter something here') Send($input) SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
scriptkitty Posted April 28, 2004 Posted April 28, 2004 You can even do it with hotkeys: hotkeyset("{pause}","whatkey") $x="x" while 1 sleep(1000) send($x) wend func whatkey() $x = InputBox("title","enter text",$x) endfunc AutoIt3, the MACGYVER Pocket Knife for computers.
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