Function Reference

首页  后退  前进

TraySetToolTip

 

设置(或重置)托盘图标的提示文本.

 

TraySetToolTip ( [text] )

参数

text

[可选] 提示工具的新文本. 长度限制见备注.

返回值

成功:

返回 1.

失败:

返回 0.

备注

提示文本长度被限制为 128 字符.

 

要重置提示文本为默认文本, 使用不带参数的函数: TraySetToolTip().

 

提示文本只能在托盘图标可见时修改!

相关

TrayTip

函数示例

#NoTrayIcon
#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.
    While 1
        Sleep(100) ; An idle loop.
    WEnd
EndFunc   ;==>Example

----------------------------------------