Step 1: Download and install the latest version of autoit from http://www.autoitscript.com i prefer that you use beta.
Step 2: Right click somewhere on your desktop or my documents, and mouseover new and click Autoit V3 Script
Step 3 (optional but recomended):Download and install SCiTE from here http://www.autoitscript.com/autoit3/scite/downloads.php
Step 4: Right click your New autoit v3 script, and click edit, here we go!
Step 5:For your first script, we'll be doing a simple msgbox, type in msgbox(1, "Title", "Body")
msgbox is a command used to create a common box, 1 stands for the style like if it has ok, cancel and such, title is title and body is the body,
Step 6: Save it and Run it! A popup should come up saying body, with the window name title, experiment with this by adding several new message boxes, you will notice it wont close when u x it unless it is the last box.
Step 7: Select all and delete, time for someting new! Time for a little lesson, first:
$ represents a variable, these can change at different times. Type this in the empty file.
$name = inputbox("Name", "What is your name?")
sleep(500)
msgbox(1, "Name", "Your Name is" & $name)
Run this and see what happens =D, experiment with it!
This is the end of the first lesson, good luck and post back!

