Jump to content

Recommended Posts

Posted

I use this script.

#Include <ScreenCapture.au3>

HotKeySet("{PRINTSCREEN}", "PicFunc")
HotKeySet("{ESC}", "ExitFunc")

SplashTextOn("ScreenCap", "Starting ScreenCap...", 200, 50)
Sleep(1000)
SplashOff()

While 1
WEnd
Func PicFunc()
    $sFileName = @ProgramFilesDir & "\ScreenCap\Cap_" & @MON & @MDAY & @HOUR & @MIN & @SEC & ".bmp"
    _ScreenCapture_Capture($sFileName)
    Sleep(100)
EndFunc

Func ExitFunc()
    Exit
EndFunc

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...