Hi, I am trying to make a project and have left this unattended and for whatever reason when I come back it stops.
Is it related to may be this...and if so how do I go about fixing it please.
https://www.autoitscript.com/wiki/Recursion
AutoIt
#include <Misc.au3> #include <Date.au3> #Include <Timers.au3> #include <ScreenCapture.au3> AdlibRegister("_Pic", 5000) ; How often to capture Global $Folder_Name = @ScriptDir & "\Pics\" & @MON & "-" & @MDAY & "-" & @YEAR _Singleton(@ScriptName) While 1 Sleep(1000) WEnd Func _Pic() If _Timer_GetIdleTime() > 3000 Then ; How long pc has been inactive ;;; Else If Not FileExists($Folder_Name) Then DirCreate($Folder_Name) EndIf $Time = _NowTime() $Time_Split = StringSplit($Time , ":") $Gen = @MON & "-" & @MDAY & "-" & @YEAR & " (" & $Time_Split[1] & "-" & $Time_Split[2] & "-" & $Time_Split[3] & ")" _ScreenCapture_Capture($Folder_Name & "\" & $Gen & ".jpg") EndIf EndFunc