I'm trying to print something with Air. Now everything works, but the Page Setup format shows up everytime. What I would like to achieve, is that the standard printer and standard paper size gets selected automatically. So no dialog pops up.
I found
var myPrintJob:PrintJob = new PrintJob();
if (myPrintJob.supportsPageSetupDialog)
{
myPrintJob.showPageSetupDialog();
}
but this just gives a possibility to actually show it. Is there a way to NOT show it?
Thank you!