本帖最后由 cjmbbbbb 于 2009-7-28 03:56 编辑
测试后,两位的都不好.....
AdlibEnable() 不知为何循环不了
llssky2003 大侠的延时让整个托盘都慢半拍了..........
最后我逆向思维...........#NoTrayIcon
#include <Constants.au3>
Opt("TrayMenuMode", 1)
Opt("trayOnEventMode", 1)
$aboutitem = TrayCreateItem("关于")
TrayItemSetOnEvent($aboutitem, "TrayMsg")
TrayCreateItem("")
$exititem = TrayCreateItem("退出")
TrayItemSetOnEvent($exititem, "TrayMsg")
TraySetState()
While 1
Sleep(6000)
If ProcessExists("Thunder5.exe") = 0 Then
Run("Thunder.exe")
EndIf
WEnd
Func TrayMsg()
Switch @TRAY_ID
Case $aboutitem
MsgBox(64, "关于本小软", "迅雷进程检测!")
Case $exititem
Exit
EndSwitch
EndFunc
还是要感谢你们 |