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

      Action is put into the WHILE LOOP using the SWITCH and CASE STATEMENT. The GUIGetMsg() function polls the GUI to see if any events…

  • 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

    This is the resulting message box:

    And the message box will be same as above

    The result of the DO LOOP

    Result of WHILE LOOP…