autoit

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…

Add Action to AutoIt Message Box – Catching the Message Box Returned Value

Add Action to AutoIt Message Box – Catching the Message Box Returned Value

Adding actions to messages boxes Message Boxes, like most functions, return one of these values and their respective meanings Button Pressed Return Values: OK = $IDOK (1) CANCEL  = $IDCANCEL (2) ABORT = $IDABORT (3) RETRY  = $IDRETRY (4) IGNORE  = $IDIGNORE (5) YES =  $IDYES (6) NO =  $IDNO (7) CONTINUE **  = $IDCONTINUE (11) TRY…

|

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…