回复 1# zb7512511
Opt("TrayOnEventMode", 1);使用onevent模式
Opt("TrayIconDebug", 1);调试模式
Opt("TrayMenuMode", 1) ; 默认菜单项目 (脚本暂停中/退出)(Script Paused/Exit) 将不会显示.
HotKeySet("{f9}", "ExitEvent")
$tt = TrayCreateItem("测试程序")
$about = TrayCreateItem("关于")
$exit = TrayCreateItem("退出")
TrayItemSetOnEvent($tt, "TT")
TrayItemSetOnEvent($about, "about")
TrayItemSetOnEvent($exit, "ExitEvent")
main()
Func main()
While 1
Sleep(100)
WEnd
EndFunc ;==>main
Func TT()
TrayItemSetState($tt, 4);菜单不被选中
TrayTip("测试程序", "go TT", 3)
;~ While 1 ;这里进入了一个死循环
;~ Sleep(100)
;~ WEnd
EndFunc ;==>TT
Func about()
TrayItemSetState($about, 4);菜单不被选中
TrayTip("测试程序", "关于测试", 3)
EndFunc ;==>about
Func ExitEvent()
TrayItemSetState($exit, 4);菜单不被选中
Exit 0
EndFunc ;==>ExitEvent
|