函数参考


TraySetState

设置系统托盘图标状态.

TraySetState ( [ 标志 ] )

参数

标志 [可选参数] 可以是下面的一个值:
1 = 显示系统托盘图标 (默认)
2 = 卸载/隐藏 托盘图标
4 = 闪烁系统托盘图标
8 = 停止系统托盘图标闪烁
16 = 重置图标为默认 (不闪烁, 默认提示文本为文件名)

返回值

None.

注意/说明

这个函数定义的选项会覆盖 "TrayIconHide"-选项和 "#NoTrayIcon"-设置.
正常/脚本暂停图标不能使用这个函数来重置!

相关

TrayItemSetState, TraySetIcon, TraySetPauseIcon

示例/演示


#NoTrayIcon

Opt("TrayMenuMode", 3) ; 默认菜单项目 (脚本暂停中/退出)(Script Paused/Exit) 将不会显示,并且所选项目不能被选中(checkbox不会打勾) . 请参考TrayMenuMode选项1和2(3=1+2).

Example()

Func Example()
    Local $iFlash = TrayCreateItem("闪烁图标")
    TrayCreateItem("") ; Create a separator line.

    Local $iAbout = TrayCreateItem("关于")
    TrayCreateItem("") ; Create a separator line.

    Local $iExit = TrayCreateItem("退出")

    TraySetState(1) ; Show the tray menu.

    While 1
        Switch TrayGetMsg()
            Case $iAbout ; Display a message box about the AutoIt version and installation path of the AutoIt executable.
                MsgBox(4096, "", "AutoIt tray menu example." & @CRLF & @CRLF & _
                        "Version: " & @AutoItVersion & @CRLF & _
                        "Install Path: " & StringLeft(@AutoItExe, StringInStr(@AutoItExe, "\", 0, -1) - 1)) ; Find the folder of a full path.

            Case $iFlash
                ; Start flashing the tray icon.
                TraySetState(4)
                Sleep(5000) ; Wait for 5 seconds.
                ; Stop flashing the tray icon.
                TraySetState(8)

            Case $iExit ; Exit the loop.
                ExitLoop
        EndSwitch
    WEnd
EndFunc   ;==>Example