#NoTrayIcon
脚本执行时不显示托盘图标.
#NoTrayIcon
备注
如果使用 Opt("TrayIconHide", 1) 移除 AutoIt 托盘图标,
脚本启动时图标仍然有一秒钟的可见.
在脚步顶部写入 #NoTrayIcon 命令, 将停止启动时显示的图标.
可以在以后使用 Opt("TrayIconHide", 0) 显示托盘图标
相关
TrayIconHide (Option)
函数示例
#NoTrayIcon
#include <MsgBoxConstants.au3>
Example()
Func Example()
; Display a message box about the tray icon appearing once the OK button is selected.
MsgBox($MB_SYSTEMMODAL, "", "The tray icon will display once OK is selected.")
; Display the tray icon.
Opt("TrayIconHide", 0)
; Wait 5 seconds before closing the script.
Sleep(5000)
EndFunc ;==>Example
----------------------------------------
|