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
|
1 2 3 4 5 |
While 1 $iMsg = GUIGetMsg() ... ... WEnd |
Action is put into the WHILE LOOP using the SWITCH and CASE STATEMENT. The GUIGetMsg() function polls the GUI to see if any events…
