vote up 0 vote down star

Hello,
I've written a program in C# to take screenshots of rectangular areas on my screen. however i don't seem to be able to capture the information from Adobe AIR applications. Instead, the applications beneath are what i end up with.

the meat of the action revolves around System.Drawing.Graphics.CopyFromScreen - passing in what amounts to an upper left point and a size and grabbing that area. I've had no problems so far with anything else, including flash movies in web pages.

I really have no idea where to look, and my google searches lead me to believe i'm the only person who has ever encountered this. :O

Any ideas?

flag

2 Answers

vote up 1 vote down check

Use the print screen key to take a screenshot of an Adobe AIR application on the Windows clipboard. Paste the screenshot into MS Paint. If you don't see Adobe AIR in your screenshot, then it's an acceleration issue - Adobe AIR is using a hardware accelerated surface (i.e. DirectX or OpenGL) for all its rendering, which means it just doesn't exist in the software screen buffer (there are ways to take screenshots of accelerated surfaces in other applications, but that gets very specialized).

link|flag
very good point. we're using certain settings on our AIR apps (these are all internally produced). i will investigate if those options push it out to an accelerated surface. – janos.erdelyi Nov 5 at 20:40
my findings are consistent so far - any AIR apps with custom chrome cannot be screened normally, but anything using the standard windows chrome can be captured in the usual fashion. thanks again! - this gives me a place to start looking – janos.erdelyi Nov 5 at 20:54
vote up 1 vote down

This doesn't help you but I just threw together a quick WinForms app to try it and I was able to take a screenshot of TweetDeck using the CopyFromScreen function.

link|flag
i've only tried the apps our company has built internally. i'll investigate external ones. thanks. – janos.erdelyi Nov 5 at 20:39
yep, i can screenshot tweetdeck. we use chromeless AIR windows. i will see if this has anything to do with it – janos.erdelyi Nov 5 at 20:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.