我想要一个 AutoIt 脚本记录空闲时间。或者,我希望能够检测屏幕保护程序何时处于活动状态。没有任何功能可以给我这些。我将如何获得此功能?
问问题
4153 次
1 回答
4
嗯。在论坛上找到的。
#include <Timers.au3>
Global $iLimit = 5 ; idle limit in seconds
HotKeySet("{ESC}", "_Quit")
AdlibRegister("_CheckIdleTime", 500)
While 1
Sleep(20)
WEnd
Func _CheckIdleTime()
If _Timer_GetIdleTime() > $iLimit * 1000 Then MsgBox(16, "Timeout", "You haven't done anything in " & $iLimit & " seconds... Get busy!", 3)
EndFunc ;==>_CheckIdleTime
Func _Quit()
Exit
EndFunc ;==>_Quit
于 2010-10-05T23:27:42.853 回答