Jump to content

Get rid of the AutoIt tooltip on tray icon


Recommended Posts

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 by aslani

[font="Georgia"]Chances are, I'm wrong.[/font]HotKey trouble?Stringregexp GuideAutoIT Current Version

Link to comment
Share on other sites

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 by aslani

[font="Georgia"]Chances are, I'm wrong.[/font]HotKey trouble?Stringregexp GuideAutoIT Current Version

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...