Core Function WinList
From Sputnik Wiki
WinList ( <title>, <text> )
Contents |
Description
Retrieves a list of windows.
Parameters
Title
The title of the window.
Text
Optional; The text of the window to read.
Return Value
Success: Returns an array of matching window titles and handles.
Failure: Returns an empty array.
Remarks
None.
See "WinTitleMatchMode" in Opt
Example
Opt( "WinDetectNoTitle", 0 ); // Do not check windows that have no title at all Opt( "WinWaitDelay", 0 ); $i = 0; foreach ( WinList() as $pList ) { List( $Title, $HWND ) = $pList; If( $pList[0] != "" && IsWindowVisible($HWND) ) println("Title '$Title' HWND '$HWND'"); } Function IsWindowVisible($HWND) { If ( WinGetState($HWND) & 2 ) Return 1; Else Return 0; }