###Function###
TrayTip

###Description###
Displays a balloon tip from the AutoIt Icon.

###Syntax###
TrayTip ( "title", "text", timeout [, option = 0] )


###Parameters###
@@ParamTable@@
title
	Text appears in bold at the top of the balloon tip. (63 characters maximum)
text
	Message the balloon tip will display. (255 characters maximum)
timeout
	A rough estimate of the time (in seconds) the balloon tip should be displayed. (Windows has a min and max of about 10-30 seconds but does not always honor a time in that range.)
option
	[optional]
		$TIP_ICONNONE (0) = No icon (default)
		$TIP_ICONASTERISK (1) = Info icon
		$TIP_ICONEXCLAMATION (2) = Warning icon
		$TIP_ICONHAND (3) = Error icon
		$TIP_NOSOUND (16) = Disable sound
	Constants are defined in TrayConstants.au3
@@End@@

###ReturnValue###
None.


###Remarks###
A Tray tip will close if the AutoIt tray icon disappears. Consequently, the <a href="TrayTip.htm">TrayTip()</a> may not appear if <a href="AutoItSetOption.htm">AutoItSetOption</a>("TrayIconHide", 1) is set or if the user has disabled balloon tips via registry settings!

Windows XP usually plays a sound when displaying a balloon tip. This sound can be disabled by adding $TIP_NOSOUND to the <em>option</em> parameter or by setting an empty title.

To clear a balloon tip that is being displayed, call another tip with an empty text string (and any title).


###Related###
MsgBox, ToolTip, TrayIconHide (Option), TraySetToolTip


###Example###
@@IncludeExample@@
