Function Reference


ControlGetFocus

Returns the ControlRef# of the control that has keyboard focus within a specified window.

ControlGetFocus ( "title" [, "text"] )

Parameters

title Title of window to check.
text [optional] Text from window to check.

Return Value

Success: Returns the ClassNameNN of the control that has keyboard focus within a specified window.
Failure: Returns "" (blank string) and sets @error to 1 if window is not found.

Remarks

None.

Related

ControlFocus, ControlCommand

Example


Run("notepad.exe")
WinWait("[CLASS:Notepad]")
Local $sControl = ControlGetFocus("[CLASS:Notepad]")
MsgBox(0, "ControlGetFocus Example", "The control that has focus is: " & $sControl)