Magellan Posted May 17, 2006 Posted May 17, 2006 Hello, I use GUICtrlSetTip in my script and it works pretty good BUT : sometimes I display very long information and the tip disappear before the user read it all Is there a way to modify the timeout or let the tip displayed till the mouse is over the control ? Thanks.
CyberSlug Posted May 17, 2006 Posted May 17, 2006 You can modify the following idea: #include <GuiConstants.au3> GuiCreate("Example") $button = GuiCtrlCreateButton("Hover over me", 50, 50) GuiSetState() While GuiGetMsg() <> $GUI_EVENT_CLOSE $info = GUIGetCursorInfo() If IsArray($info) And $info[4] = $button Then ToolTip("This is info, blah blah blah") Else ToolTip('');remove tooltip EndIf WEnd Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
Magellan Posted May 17, 2006 Author Posted May 17, 2006 Thank you. But the problem is that I've type all the tip in Koda ! And I wouldn't like to change my GUI description in the au3 file but only in Koda ! Still possible ? Thanks
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