Displays a balloon tip from the AuotIt Icon. (2000/XP only)
TrayTip ( "title", "text", timeout [, option] )
Parameters
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 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] See Remarks. 0=No icon (default), 1=Info icon, 2=Warning icon, 3=Error icon |
Return Value
None.
Remarks
TrayTip works for only Windows 2000/XP or better.
Related
MsgBox, ToolTip, TrayIconHide (Option)
Example
TrayTip("I'm a title", "I'm the message", 5, 1)
MsgBox(4096,"", "Press OK to see another tip.")
TrayTip("clears any tray tip","",0)
TrayTip("", "A different tray tip.", 5)
Sleep(5000)