h711 Posted October 6, 2008 Posted October 6, 2008 Hi all, From the help menu, it says _GUICtrlButton_GetFocus will return: True: Button has focus False: Button does not have focus I am not sure if this "has focus" is the same as "is focused", so I tested it on the autoit installer page 1 #Include <GuiButton.au3> WinActivate("[CLASS:#32770]") Sleep(1000) $hwnd = ControlGetHandle("[CLASS:#32770]","","[ID:1]") if _GUICtrlButton_GetFocus($hwnd)=True Then MsgBox(0, "", "true") else MsgBox(0, "", "false") EndIf But it always return false. Any idea and suggestions? Thanks!
martin Posted October 6, 2008 Posted October 6, 2008 Hi all, From the help menu, it says _GUICtrlButton_GetFocus will return: True: Button has focus False: Button does not have focus I am not sure if this "has focus" is the same as "is focused", so I tested it on the autoit installer page 1 #Include <GuiButton.au3> WinActivate("[CLASS:#32770]") Sleep(1000) $hwnd = ControlGetHandle("[CLASS:#32770]","","[ID:1]") if _GUICtrlButton_GetFocus($hwnd)=True Then MsgBox(0, "", "true") else MsgBox(0, "", "false") EndIf But it always return false. Any idea and suggestions? Thanks!If you want the focused control in another app then look up ControlGetFocus. Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now