sisdlm Posted February 7, 2006 Posted February 7, 2006 Extremely new to autoit and scripting in general, looking for some assistance. I want to create an input box to prompt the user for ? then paste that users input into an active notepad session. Please help the newbie...
Developers Jos Posted February 7, 2006 Developers Posted February 7, 2006 Extremely new to autoit and scripting in general, looking for some assistance.I want to create an input box to prompt the user for ? then paste that users input into an active notepad session. Please help the newbie... Have a look at the included example notepad1.au3 in C:\Program Files\AutoIt3\Examples. 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.
Moderators big_daddy Posted February 7, 2006 Moderators Posted February 7, 2006 Extremely new to autoit and scripting in general, looking for some assistance. I want to create an input box to prompt the user for ? then paste that users input into an active notepad session. Please help the newbie... Try this: $Input = InputBox("Title", "Enter whatever") Run("notepad") WinWaitActive("Untitled - Notepad") ControlSend("Untitled - Notepad", "", "Edit1", $Input)
flaxcrack Posted February 7, 2006 Posted February 7, 2006 Extremely new to autoit and scripting in general, looking for some assistance.I want to create an input box to prompt the user for ? then paste that users input into an active notepad session. Please help the newbie... Sure thing! Welcome to the fourms btw... You need to research: InputBox() ClipGet() Send()/ClipPut() [quote] Gilbertson's Law: Nothing is foolproof to a sufficiently talented fool.Sandro Alvares: Flaxcrack is please not noob! i can report you is stop stupid. The Post[/quote]I made this: FWD & MD5PWD()
Valuater Posted February 7, 2006 Posted February 7, 2006 (edited) Welcome to Autoit....You should really see this great demo for newbieshttp://www.autoitscript.com/forum/index.ph...opic=21048&hl=#I just wrote a great one for a demonstarionbut this is what you asked for$Input = InputBox("My Input Box","Please type in your text") Run("Notepad.exe") WinActivate("") Sleep(200) Send($Input)Enjoy!!!8)EDITman... i must be getting slow...lol Edited February 7, 2006 by Valuater
sisdlm Posted February 7, 2006 Author Posted February 7, 2006 Thanks to all for helping.. and not beating up the new guy ...
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