; ; AutoIt Version: 3.0 ; Language: English ; Platform: Win2000/XP/2003/Vista ; Author: Core Technologies Consulting, LLC ; ; Script Function: ; Dismisses a message box with the title "Error Message" by clicking the OK button ; ; Wait for the window to become active if (WinActivate("Error Message")) Then ; Click the "OK" button ControlClick("Error Message", "OK", "") EndIf