Volgar Posted January 6, 2009 Posted January 6, 2009 Hi, guys! Happy New Year! I have a problem using my program, which I made at one framework - Opus. Opus cannot save a screenshot of a given area within itself. But Opus can run third-party programs. For example, AutoIt:) I tried to use ScreenCapture.au3, but after compiling and running exe file, nothing happens, no windows no warnings. Explain me, please, how inside my Opus program to withdraw screenshot given area that was a standard windows box "Save as ..." and the user can enter the name of the picture and it save as JPG. And all this with the help of AutoIt. Call AutoIt from Opus I can myself:). Thanks.
FireFox Posted January 6, 2009 Posted January 6, 2009 @Volgar #include <ScreenCapture.au3> $scc = _ScreenCapture_Capture('', 0, 0, -1, -1, True) ;Capture all screen $out = FileSaveDialog('Save screenshot', '', '(*.bmp)',1+2,'screenshot.bmp') _ScreenCapture_SaveImage($out, $scc) Cheers, FireFox.
Volgar Posted January 6, 2009 Author Posted January 6, 2009 Many thanks, FireFox! It work fine. Try built into my software. AutoIt + Opus = enormous power:)
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