I'd like to print a big page (bigger than an A4 Paper), but the MC is getting cutted at the end of the page. Is flash able to print the other part of the MC on a second page?
My code:
buttonRgPrint.addEventListener(MouseEvent.CLICK, printDocRg);
function printDocRg (MouseEvent):void{
var printJob:PrintJob = new PrintJob();
if (printJob.start()) {
printJob.addPage(myMC);
printJob.send();
}
}
Thanks and kind regards.