Vladi243 Posted June 13, 2008 Posted June 13, 2008 (edited) I created a ToolTip, and I have 2 questions about it. 1. How can I set an expire time for the tooltip? 2. How can I make that the tooltip expire when I click with the mouse on it? Edited June 13, 2008 by Vladi243
Tomb Posted June 13, 2008 Posted June 13, 2008 ;Expiring tooltip example ToolTip("This is an expiring tooltip", 0, 0) sleep(5000) ToolTip("");expired
Valuater Posted June 13, 2008 Posted June 13, 2008 ToolTip UDF by Rasimhttp://www.autoitscript.com/forum/index.ph...st&p=532263"Free Text" Place text anywhere by Valuaterhttp://www.autoitscript.com/forum/index.ph...st&p=5279128)
Vladi243 Posted June 13, 2008 Author Posted June 13, 2008 (edited) Now it's OK. One more question: The text of the tooltip is too long. I want to drop a line in the middle of the text. How I do it? Edited June 13, 2008 by Vladi243
Valuater Posted June 13, 2008 Posted June 13, 2008 Maybe... $Text = "This is a long line " & @CRLF & " of text so I split it!" ToolTip($Text, 10, 10) Sleep(2000) 8)
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