Checks if a matching window exists. If it is, WinExist() returns the Unique ID (HWND) of the first matching window.
UniqueID := WinExist(WinTitle , WinText, ExcludeTitle, ExcludeText)
A window title or other criteria identifying the target window. See WinTitle.
If present, this parameter must be a substring from a single text element of the target window (as revealed by the included Window Spy utility). Hidden text elements are detected if DetectHiddenText is ON.
Windows whose titles include this value will not be considered.
Windows whose text include this value will not be considered.
This function returns the Unique ID (HWND) (as hexadecimal integer) of the first matching window (0 if none). Since all non-zero numbers are seen as "true", the statement if WinExist(WinTitle)
is true whenever WinTitle exists.
if WinExist("ahk_class Notepad") or WinExist("ahk_class" . ClassName) WinActivate ; Uses the last found window. MsgBox % "The active window's ID is " . WinExist("A")
If !WinExist("Calculator") ; Equivalent to IfWinNotExist, Calculator return
Deprecated: This command is not recommended for use in new scripts. Use the WinExist function instead.
IfWinExist , WinTitle, WinText, ExcludeTitle, ExcludeText IfWinNotExist , WinTitle, WinText, ExcludeTitle, ExcludeText
A window title or other criteria identifying the target window. See WinTitle.
If present, this parameter must be a substring from a single text element of the target window (as revealed by the included Window Spy utility). Hidden text elements are detected if DetectHiddenText is ON.
Windows whose titles include this value will not be considered.
Note: Due to backward compatibility, IfWin[Not]Exist interpret this parameter as a command if it exactly matches the name of a command. To work around this, use the WinExist function instead.
Windows whose text include this value will not be considered.
SetWinDelay does not apply to this command.
IfWinExist, Untitled - Notepad { WinActivate ; Automatically uses the window found above. WinMaximize ; same Send, Some text.{Enter} return }
IfWinNotExist, Calculator return else { WinActivate ; The above "IfWinNotExist" also set the "last found" window for us. WinMove, 40, 40 ; Move it to a new position. return }
If all parameters are omitted, the Last Found Window will be checked to see if it still exists (or doesn't exist in the case of IfWinNotExist).
If the function or command determines that a qualified window exists, the Last Found Window will be updated to be that window. In other words, if WinExist or IfWinExist evaluates to true or IfWinNotExist evaluates to false, the Last Found Window will be updated.
To discover the HWND of a control (for use with Post/SendMessage or DllCall), use ControlGet Hwnd or MouseGetPos.
Window titles and text are case sensitive. Hidden windows are not detected unless DetectHiddenWindows has been turned on.
WinActive() / IfWinActive, SetTitleMatchMode, DetectHiddenWindows, Last Found Window, Process, WinActivate, WinWaitActive, WinWait, WinWaitClose, #IfWinActive/Exist