我想让一个AutoIt脚本记录空闲时间。另外,我希望能够检测屏幕保护程序何时处于 Activity 状态。没有任何功能可以给我这些功能。我将如何获得此功能?

最佳答案

嗯在论坛上找到它。

#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

关于windows - AutoIt:如何获取系统空闲时间,或者屏幕保护程序是否处于事件状态?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3867584/

10-12 21:07