maniootek Posted October 4, 2009 Posted October 4, 2009 (edited) I was searching but I couldn't find any! I found something like this: #include <A3LScreenCap.au3> ; Full screen capture _ScreenCap_Capture("c:\full.bmp") ; Region capture _ScreenCap_Capture("c:\part1.bmp", 0, 0, 300, 400) _ScreenCap_Capture("c:\apic.bmp", 5, 10, 215, 80)] But I don't have this file (library) A3LScreenCap.au3 in my AutoIt folder. Where can I find it and any help file? I just want function to save or put to clipboard region from my screen (x1,y1,x2,y2) Edited: I just found, it is ScreenCapture.au3 file and my script should looks like this: #include <ScreenCapture.au3> ; Full screen capture _ScreenCapture_Capture("c:\full.bmp") ; Region capture _ScreenCapture_Capture("c:\part1.bmp", 0, 0, 300, 400) _ScreenCapture_Capture("c:\apic.bmp", 5, 10, 215, 80) Edited October 4, 2009 by maniootek
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