0

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.

matthias_h
  • 11,356
  • 9
  • 22
  • 40
override
  • 1
  • 1
  • 3

1 Answers1

0

You can try printing the page as a single page by scaling

The number of pixels depends on the dpi. Check this out for more info

buttonRgPrint.addEventListener(MouseEvent.CLICK, printDocRg);
function printDocRg (MouseEvent):void{

    var printJob:PrintJob = new PrintJob();

    if (printJob.start()) {
        myMC.width = 420; 
        myMC.height = 842;
        printJob.addPage(myMC);
        printJob.send();
    }
}
Fergoso
  • 1,584
  • 3
  • 21
  • 44