I just started doing autoit and this is what I made, so how can I make it better?
and where can I get good tutorials?
CODE$name = inputbox ("Name", "Type your name please")
$age = inputbox ("Age", "Type in your age")
$email = inputbox ("Email", "Type in your email")
$gender = inputbox ("Gender", "what gender are you?")
run ("notepad.exe")
Sleep (1000)
Send ("your name is ")
Send ($name)
Send ("{enter}")
send ("you are ")
Send ($age )
Send (" Years old")
Send ("{enter}")
Send ("Your email is ")
Send ($email)
Send ("{enter}")
Send ("You are ")
Send ($gender)