AustrianOak Posted July 10, 2008 Posted July 10, 2008 how do i get rid of this tip. tried traytip() already and still doesnt work... TrayTip("Blah", "", 5)
aslani Posted July 10, 2008 Posted July 10, 2008 (edited) To hide the Icon; AutoItSetOption ( "TrayIconHide" , 1) Or you can read about TraySetState() from the Help file. About the Tool Tip; TraySetToolTip (" ") Or you can read about ToolTip() from the Help file. EDIT: typo Edited July 10, 2008 by aslani [font="Georgia"]Chances are, I'm wrong.[/font]HotKey trouble?Stringregexp GuideAutoIT Current Version
AustrianOak Posted July 10, 2008 Author Posted July 10, 2008 Tried TraySetToolTip("Text") and it is still showing "AutoIt - My program name.au3"
aslani Posted July 10, 2008 Posted July 10, 2008 (edited) Did you place it inside the GUI loop? While 1 TraySetToolTip ("STOP POINTING AT ME!"); this is where you should place it. $msg = GUIGetMsg() Select Case EndSelect WEnd Edited July 10, 2008 by aslani [font="Georgia"]Chances are, I'm wrong.[/font]HotKey trouble?Stringregexp GuideAutoIT Current Version
Valuater Posted July 10, 2008 Posted July 10, 2008 Straight from help.... not in the loop #Include <Constants.au3> #NoTrayIcon TraySetState() [color="#ffffff"]TraySetToolTip[/color]("This is my new tooltip text!") While 1 Sleep(10) ; Idle loop WEnd Exit 8)
aslani Posted July 10, 2008 Posted July 10, 2008 Valuater said: Straight from help.... not in the loop #Include <Constants.au3> #NoTrayIcon TraySetState() [color="#ffffff"]TraySetToolTip[/color]("This is my new tooltip text!") While 1 Sleep(10) ; Idle loop WEnd Exit 8) And I all this time I always thought it only works inside the loop. Thanks muttley [font="Georgia"]Chances are, I'm wrong.[/font]HotKey trouble?Stringregexp GuideAutoIT Current Version
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