Tutorial - HelloWorld

This tutorial explains the basics of creating an AutoIt script and running it. The tutorial assumes that you have already fully installed AutoIt v3 using the supplied installer.

 

First open a folder where you wish to create the script. Right-click in the folder and select New / AutoIt v3 Script.

 

A new file will be created, immediately allowing you to rename it to something more appropriate. Change 'New AutoIt v3 Script' to 'helloworld', leaving the '.au3' in the name intact if it is visible.

 

Now we have created the script file we want to edit it to make it do something useful. Right-click on helloworld.au3 and select Edit Script.

 

The SciTE editor will open and you will see something like this:

 

The code you see is simply some comments that you can use to organize your scripts. The lines that start with a semi-colon ; are treated as comments (ignored). ; is similar to the REM statement in a DOS batch file. The template is stored at "C:\Windows\ShellNew\Template.au3" - you can customise it to meet your own requirements.

 

Now we want to tell AutoIt to display a message box - this is done with the MsgBox function.

At the bottom of the file type the following:

 

#include <MsgBoxConstants.au3>

MsgBox($MB_OK, "Tutorial", "Hello World!")

 

All functions take parameters, MsgBox takes three - a flag, a title and a message. The flag is a number that changes the way MsgBox displays - we will use $MB_OK for now. The title and message are both string parameters - when using strings in AutoIt surround the text in double or single quotes. "This is some text" or 'This is some text' - both will work fine.

Now save the script and close the editor. You've just written your very first AutoIt script! To run the script simply double-click the helloworld.au3 file (you may also right-click the file and select Run Script) .

You should see this:

 

Now, let's look at the flag parameter for the MsgBox function again. From the documentation page we can see various values listed which change the way MsgBox displays. The value of $MB_OK simply shows a simple message box with an OK button. A value of $MB_ICONINFORMATION displays the message box with an information icon.

Edit the script again and change $MB_OK to $MB_ICONINFORMATION so you have:

#include <MsgBoxConstants.au3>

MsgBox($MB_ICONINFORMATION, "Tutorial", "Hello World!")

 

Run the script and you will see:

 

Experiment with the various flag values to see what kind of results you can get. Remember, if you want to use more than one flag value then simply add the required values together.