Is it possible to hide the printing dialog in flex? I’m using the class FlexPrintJob.
Here’s my code:
var print:FlexPrintJob = new FlexPrintJob();
print.printAsBitmap = true;
if ( print.start() ) {
print.addObject( img as UIComponent, FlexPrintJobScaleType.SHOW_ALL );
print.send();
}
you can use start2() from the printjobs class