Generate AutoIT GUI and Assign Actions to Form Elements

This is a quick code to create a BUTTON , CHECKBOX and COMBO BOX and assign some action to them using “MessageLoop Format”. The general message loop format is While 1 $iMsg = GUIGetMsg() … … WEnd   Action is put into the WHILE LOOP using the SWITCH and CASE STATEMENT. The GUIGetMsg() function polls

Read More »

AutoIT simple tutorial on LOOPS – IF, FOR LOOP, WHILE LOOP, DO LOOP

Autoit is a very simple yet powerful tool to automate simple scripts. Today, we are looking at LOOPS. Credit to 403forbidden403. You can check her on Youtbue ;loops ;lets declare a varible $var = 1 ;lets write an if statement if $var = 1 then MsgBox(6,”if Statement Message box”,”How does the message box look?”) endIf This

Read More »