I’m trying to print a mc from flash. The mc has dimensions 1000x1400 pixels which doesn’t allow it to print on one page. So I’m forced to scale it a little bit. Unfortunatelly the final result is very bad. In fact the result when I try to print it without scale (just the part of the mc that can be printed) is much worse that when I print the content of that mc (an image) independantly.
Bottom line: when I print the content of an MC from flash the result is much worse then when I print the content itself, without flash
So I was wondering is there other way to make my mc fit to a printable A4 page or any other advise you can give me?
P.S. the quality publish settings are not an issue, because the image is loaded as an external file to the flash
Thanks
This is the code I’m using
printButton.onRelease = function()
{
var pageCount:Number = 0;
var my_pj:PrintJob = new PrintJob();
if (my_pj.start())
{
var x:Number = myMC._xscale;
var y:Number = myMC._yscale;
myMC._xscale = 60;
myMC._yscale = 60;
if (my_pj.addPage("myMC",
{xMin:0,xMax:1000,yMin:0,yMax:1400},null, 3)){
pageCount++;
}
myMC._xscale = x;
myMC._yscale = y;
}
if (pageCount > 0){
my_pj.send();
}
delete my_pj;
}