Flash CS5 AS3 drop shadow filter won't print
Posted
by
Blake uburuDOTcom
on Stack Overflow
See other posts from Stack Overflow
or by Blake uburuDOTcom
Published on 2011-01-17T20:04:33Z
Indexed on
2011/01/17
20:53 UTC
Read the original article
Hit count: 219
Hello all,
I've tried searching quite a bit to discover why I don't seem to be able to print drop shadow filters from within Flash. I have trouble printing, but if the movieclip I want to print has or contains a drop shadow, that clip will print sans the drop shadow.
Anyone have any insight as to why this might be happening?
If you want to try it out yourself, here is the simple print code I'm using. Just put something inside contentmc with a dropshadow and print it.
print_btn.addEventListener(MouseEvent.CLICK,printContent);
function printContent(evt:MouseEvent) {
var printJob:PrintJob = new PrintJob();
if (printJob.start()) {
if (content_mc.width>printJob.pageWidth) {
content_mc.width=printJob.pageWidth;
content_mc.scaleY=content_mc.scaleX;
}
printJob.addPage(content_mc);
printJob.send();
}
}
© Stack Overflow or respective owner