GaryFrost Posted November 14, 2007 Posted November 14, 2007 I installed GDI+... but i still get the same error How about a script that uses that so we can reproduce/debug the error.... SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
thomaatje Posted November 15, 2007 Author Posted November 15, 2007 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
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now