OutputVar := Mfunc.ControlGetFocus([WinTitle, WinText, ExcludeTitle, ExcludeText])
Retrieves which control of the target window has input focus, if any.
WinTitle
A window title or other criteria identifying the target window.
WinText
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.
ExcludeTitle
Windows whose titles include this value will not be considered.
ExcludeText
Windows whose text include this value will not be considered.
Returns the variable in which to store the identifier of the control, which consists of its classname followed by its sequence number within its parent window, e.g. Button12.
Throws MfException if error occurs.
Wrapper for AutoHotkey Docs - ControlGetFocus.
Static Method
Any and/or all parameter for this function can be instance of MfString or var containing string.
See Also: AutoHotkey Docs - ControlGetFocus
try
{
OutputVar := Mfunc.ControlGetFocus("Untitled - Notepad") MsgBox, Control with focus = %OutputVar%
}
catch e
{
MsgBox, The target window doesn't exist or none of its controls has input focus.
}