This is an extremely basic guide. Autoit Programming. All knowledge acquired from Doctuh.
1) Okay so the first thing you need to do is download these programs in this order.
For the first one make sure you choose Editor AutoIt v3 - Downloads Choose the full download http://www.autoitscript.com/autoit3/...beta-setup.exe Just download this one http://www.autoitscript.com/cgi-bin/...TE4AutoIt3.exe 2) Now go and open SciTE
3) Once you have opened SciTE, enter this code on line one
Code:
$var = InputBox ("QUESTION!", "What is your name?")
4) Now on the second line enter
Code:
MsgBox (0, "Your name is", $var)
5) Now click, File, Beta Run
6) Your program should Pop Up and you enter the answer! All done
CONGRATZ YOU MADE YOUR FIRST PROG
Updates
Security Question:
Code:
$passwd = InputBox("Security Check", "Enter your password.", "", "*")
$answer = InputBox("Question", "Where were you born?", "Planet Earth", "", _
-1, -1, 0, 0)
$value = InputBox("Testing", "Enter the 1 or 2 character code.", "", " M2")
MsgBox(4096, "Correct", "This box will time out in 10 seconds", 10) Closing Box (Choose Time):
Code:
$memory = InputBox("milliseconds left","how long to read text? Pick only a number and a good one.")
Run("notepad.exe")
WinWaitActive("Untitled - Notepad")
send("This is a text that was created by autoit v3.0,{ENTER} a very good piece of work. now you have")
send("{ENTER}")
send($memory)
send("millaseconds to read this message.")
sleep($memory)
WinClose("Untitled - Notepad")
WinWaitActive("Notepad", "Do you want to save")
Send("!y")
winwaitactive("Save As")
send("hello.txt")
send("{ENTER}")
winwaitactive("Save As");overwrites the file if needed. Careful if you have a file name like this.
send("!y")