Flash Print Question
- Started
- Last post
- 4 Responses
- nosaj
I have want to print a "page" from flash with hi-res bmps.
For example a page with some text and a photo. I want the photo to be 150 DPI (not 72). Any suggestions?
- nosaj0
sorry about the double post.
- maximillion_0
id suggest having high res versions of the images you want to print on the server, when the user prints, duplicate the MC and pull in the high res version before printing. that would work for pages with simialr layout but oterwise it could be a nightmare.
you could dynamically load and then scale the 150 dpi image to the 72dpi size but that would slow the site down
- jpea0
http://www.devx.com/webdev/Artic…
you can also just use the print() function to print a movie clip. maybe have a large clip off the stage that has a high res image of what you wanted printed in it, then just onRelease or something, set it to print(myLargeClipName, 'bframe') and it'll print the contents on that clip. there are much more controllable ways of printing in flash though, and that link mentions them.
- nosaj0
Thanks - worked like a charm.