﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2970	TraySetToolTip text set to Chr(0) hides the tooltip.	guinness		"If the tooltip text is set to null then the tooltip is hidden. If this isn't a bug then it will need documenting in the help file.

{{{
#NoTrayIcon
#include <MsgBoxConstants.au3>
#include <TrayConstants.au3>

Example()

Func Example()
    TraySetState($TRAY_ICONSTATE_SHOW) ; Show the tray menu.
    TraySetToolTip(""An example of a tray menu tooltip."") ; The tray menu icon must be shown before we can set some text.

    MsgBox($MB_SYSTEMMODAL, """", ""Hover your mouse over the AutoIt icon to see the tooltip text set before."")

    TraySetToolTip(Chr(0)) ; Hide the tooltip text by setting to null i.e. ASCII - 0.

    MsgBox($MB_SYSTEMMODAL, """", ""Hover your mouse over the AutoIt icon to see the tooltip is now hidden."") ; BUG

    TraySetToolTip() ; Reset the tooltip to the original text i.e. the script filename.

    MsgBox($MB_SYSTEMMODAL, """", ""Hover your mouse over the AutoIt icon to see the tooltip is now the filename e.g. AutoIt - Example.au3"")
EndFunc   ;==>Example
}}}"	Bug	closed		AutoIt	3.3.12.0	None	No Bug		
