dandymcgee Posted August 26, 2006 Posted August 26, 2006 I am trying to have something happen when a certain control is in focus. Is it possible to figure out what control currently has focus on it? I have tried: If GUICtrlGetState(6) = $GUI_FOCUS Then MsgBox(0, "Testing", "It worked!") Else MsgBox(0, "Testing", "Failed... Again") EndIf Any ideas? - Dan [Website]
Moderators SmOke_N Posted August 27, 2006 Moderators Posted August 27, 2006 GUICtrlGetState() only returns "hidden, disabled, or enabled" states. You'll need to look at ControlGetFocus()/ControlFocus(). Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
dandymcgee Posted August 27, 2006 Author Posted August 27, 2006 Thanks smoke your the man! - Dan [Website]
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