AutoIt Tutorial Downloads
Downloads of the AutoIt video tutorials for anyone that wants them. They are of higher quality than the ones on YouTube.
AutoIt Tutorial Part 0 (Introduction)
An introduction to the tutorials.
Going over the basics of functions, using the MsgBox function as an example.
This video goes over how to use variables.
Going over how to use arrays, a special kind of variable.
Showing you how to use While, If, Do, and For loops.
Showing how to make something happen when a button in a MsgBox is pressed.
Showing you how to create your own GUI’s.
Showing you how to make something happen when you do something in a GUI.
Showing you how to create your own functions.
Showing off a script I wrote to demonstrate other functions.
Again, showing another script to demonstrate other functions.
Here, we write our own script from scratch.
Here, we get into networking, and write our own TCP client.
Here, we write the TCP server, that will communicate with the TCP client.
Here, I show off some of the tools included with AutoIt.
Here, I show off some of the tools included with the editor, SciTe.
Showing you how to use AU3Recorder to write the code nessisary for AutoIt to install a program for you, doing all the mouse clicks and things automatically.
In this tutorial, I get into how to make game, and other bots. In this video, I use minesweeper as an example “game”.

Michael · September 15, 2009 at 9:52 am
Hi
By clicking on one of those links wordpress only shows me a site “Sorry, no posts matched your criteria.”
So i can´t download the tutorials
Admin comment by 403forbidden · September 15, 2009 at 9:37 pm
What link does not work? Try it now, I changed something with backslashes that should make it work.
Chrissy · September 22, 2009 at 6:21 am
I also can’t look all of this videos. I’m getting the same message: “Sorry, no posts matched your criteria.”
Is ist working only with IE ?
Admin comment by 403forbidden · September 22, 2009 at 11:23 am
It looks like it’s an IE thing, I will get it working for you guys, sorry, still working out the kinks.
Scott · October 4, 2009 at 2:15 pm
I very much appreciate you taking the time to make these videos!
But would it would be much easier to navigate if you added short descriptions of what each video is (i.e. “How to make your own custom functions.”), so we know what were downloading.
Thanks!
Admin comment by 403forbidden · October 4, 2009 at 3:23 pm
Good idea! I always thought that people get the descriptions from YouTube, but you make a good point, having descriptions would make it a lot easier.
rey · October 23, 2009 at 3:50 am
keep up the good work!
Admin comment by 403forbidden · October 24, 2009 at 7:48 pm
Thanks, I’ll do my best!
Fernando · November 4, 2009 at 12:29 pm
Thanks, I very greatly appreciate the time you took to make the tutorials. They really helped me out.
Admin comment by 403forbidden · November 4, 2009 at 3:58 pm
Thanks, let me know if you have any other ideas on what video tutorials might be useful to people.
Michael Madison · November 9, 2009 at 11:32 am
Thank you very much for doing what comes natural… at least you make it appear so. I’m working with start up non-profit have have been a “wanna-b” for some time now and am re-visiting AutoIt. Your willingness to share knowlege is greatly appreciated. If you’ve a moment, check the video at http://www.textpotential.org. You’ll also find we’re involved in making mathe & science tutorials available to the willing to learn.
Peace and Positivity
san · November 17, 2009 at 3:30 am
awesome tutorials man….I have never liked any programming, but yours kind of got me interested.
Pestilence · December 1, 2009 at 9:17 pm
Thanks buddy…i just started experimenting with autoit and your videos are badass dude….really helpfull for beginners like me….
Admin comment by 403forbidden · December 1, 2009 at 9:56 pm
Thanks a bunch, you made my day.
If you think that there is another thing that you would enjoy video tutorials on, please let me know, and I will look into it.
Pestilence · December 2, 2009 at 5:05 pm
I love the Tcp server/client videos 403…i never knew it was that easy to do…maybe you could make a video about GuiCtrlRead/State/SetData etc..when and how you use them to put something in a list/view/combobox etc….and btw video 6.1 is a bit buggy…around 2.30 min the sound is gone and the picture kinda hangs…but nevertheless…good stuff dude
))
Admin comment by 403forbidden · December 2, 2009 at 5:17 pm
Thanks for the tip about the video, not much I can do about it now though.
The video idea sounds good to me, I am also going to do a video on how to make bots, I have gotten quite a few requests. Expect to see them sometime soon!
Pestilence · December 2, 2009 at 6:42 pm
No problem 403…aah consider me the first 2 download the bot videos hahaha, but in the meantime im going to watch your rijndael vids and study some more autoit
SLI · January 21, 2010 at 11:59 am
There is some kind of problem with the download version of video 6.1. At approx. 1:20 into the video, the sample GIU box gets closed. when that happens the video stops (freezes) you can hear the audio for a while..then nothing but clicking sounds until it’s almost over. Downloaded three times on two different computers and both doing same thing. Think it’s messed up.
ronald · January 22, 2010 at 3:48 am
Great job! However recording (video13) is resolution dependend. Anyway recording objects?
Macsek · January 22, 2010 at 6:15 am
Thanks for the videos. We just have started to use AutoIt and it is a good addition to the original documentation (which is also good).
So thanks again
Saurichauri · January 28, 2010 at 8:17 pm
Awesome dude! My professor asked us to use this for our software testing class but he is way over our level to explain the stuff. I got a programming assignment due shortly and boy was I glad to have found your videos.
You’re a lifesaver man!
hi5!
Admin comment by 403forbidden · January 30, 2010 at 5:22 pm
Hmmm, I was (and still am) having trouble with codecs and stuff. Try checking it out on YouTube, it should work. If not, sorry, that’s the only copy I have. Maybe try VLC media player, if not i’ll re-upload it and see if that helps, let me know.
Admin comment by 403forbidden · January 30, 2010 at 5:23 pm
Admin comment by 403forbidden · January 30, 2010 at 5:23 pm
jbinc1 · February 18, 2010 at 10:11 am
Thanks for the videos. These will help getting started with AutoIt.
Keith · March 4, 2010 at 11:54 am
hey thanks for posting these. I am trying to use regread to grab a driverdesc and I need to check between one and three registry keys, and use some sort of an if function to say if this , this or this driverdesc are equal to this, then install this, if not just close and end.
Any idea how to have it compare these reg keys?
Admin comment by 403forbidden · March 6, 2010 at 6:09 pm
Sure thing, just use the RegRead function.
Global $Temp[3]
$Temp[0] = If Regread(“Key1″)
$Temp[1] = If Regread(“Key2″)
$Temp[2] = If Regread(“Key3″)
If $Temp[0] = $Temp[1] And $Temp[0] = $Temp[2] And $Temp[1] = $Temp[2] Then
Do stuff
EndIf
mr.wang · March 8, 2010 at 11:13 pm
very good
Andy · March 31, 2010 at 4:27 pm
Hey, Wonderful work on these tutorials, and props for taking the time to actually sit down and work with the rest of the community like this. I have very much enjoyed them. I do have an idea for another tutorial, and it’s something I’m currently working with. That is, reading and writing to an SQL Database, for the purposes of an authentication server of sorts. Just an idea, although it’s pretty advanced. Thanks again from everyone that has viewed these for all your awesome work!
Admin comment by 403forbidden · April 2, 2010 at 3:26 pm
I know that AutoIt has some SQLite abilities…check the help file, I don’t know more than that.
Donka · May 18, 2010 at 3:28 pm
Thanks for the tutorial videos!! Excelent content!
Seb · May 22, 2010 at 8:34 am
Great tutorials. You sound like you’re 11yo but the tutorials are solid so well done!
Admin comment by 403forbidden · May 22, 2010 at 11:20 am
Haha, watch more recent ones. =P
Skwiggs · May 26, 2010 at 3:10 am
I am an old dog when it comes to different programming languages, but these videos helped me learn the more intimate details much faster, Great Job!
Skwiggs · May 26, 2010 at 4:12 am
Anyone having troubles with 6.1? for me the video errors out around 1:30 and is stuck there. the aduio keeps going. And i can still use it but i’ve re-downloaded it over 3 times now and same error.
Admin comment by 403forbidden · May 26, 2010 at 6:57 am
Sorry, but those are the originals, I was having trouble with codecs, so I don’t have anything else. :/ Sorry. Try playing it with VLC media player, it might work then.
Steve · June 10, 2010 at 3:37 pm
Good tutorials dude. ‘cept for that 6.1 crasher…
Glad it wasn’t just me… will have to find it on YT…
Hey… you got a tip jar or something? Paypal? I wouldn’t mind throwing you a fiver or a ten-spot for these vids.
Neil · July 11, 2010 at 4:16 pm
This is very handy indeed. It makes the initial learning of AutoIt a lot easier than reading through a bunch of documents. Thanks.
rahul · July 19, 2010 at 12:03 am
Thanks a lot for the videos!
nasgeneration · August 18, 2010 at 8:25 am
Brother , a Big Thanks to you
You are MY HERO
Keep Up the Good Work
THANKS THANKS THANKS THANKS THANKS THANKS