PDA

View Full Version : Printing a Scrollable Canvas


Duane
08-11-2008, 09:04 PM
Hi .... I have a canvas ,with it's verticalscrollpolicy set to "auto", that is dynamically populated. I want to print the entire content of that canvas.

I'm using the following code:

var printJob:FlexPrintJob=new FlexPrintJob();
printJob.start();
printJob.addObject(canvasCharges);
printJob.send();

It works fine except that it only prints what is visable on the screen. I want to print the entire content of the canvas.

Anybody?