fork download
  1. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. #NoTrayIcon
  3. #Persistent
  4. ES_DISPLAY_REQUIRED ::= 0x00000002
  5. SetTimer, CheckWindowsState, % 1000*30 ; Poll every 30 seconds
  6.  
  7. CheckWindowsState:
  8. If ( WinActive("ahk_class AGFullScreenWinClass") || WinActive("ahk_class ShockwaveFlashFullScreen") )
  9. {
  10. DllCall("SetThreadExecutionState", UInt, ES_DISPLAY_REQUIRED) ;prevent sleep
  11. }
  12. Return
Runtime error #stdin #stdout 0.02s 5760KB
stdin
Standard input is empty
stdout
Standard output is empty