Checks to see if a specified window exists and is currently active.
WinActive ( "title" [, "text"] )
| title | The title of the window to check. See Title special definition. |
| text | [optional] The text of the window to check. |
| Success: | Returns the handle to the window if it is active. |
| Failure: | Returns 0 otherwise. |
If WinActive("[CLASS:Notepad]") Then
MsgBox(0, "", "Window was active")
EndIf