是否可以在 flex 中隐藏打印对话框?我正在使用 FlexPrintJob 类。
这是我的代码:
var print:FlexPrintJob = new FlexPrintJob();
print.printAsBitmap = true;
if ( print.start() ) {
print.addObject( img as UIComponent, FlexPrintJobScaleType.SHOW_ALL );
print.send();
}
是否可以在 flex 中隐藏打印对话框?我正在使用 FlexPrintJob 类。
这是我的代码:
var print:FlexPrintJob = new FlexPrintJob();
print.printAsBitmap = true;
if ( print.start() ) {
print.addObject( img as UIComponent, FlexPrintJobScaleType.SHOW_ALL );
print.send();
}
您可以使用 printjobs 类中的 start2()
import flash.printing.PrintJob;
import flash.printing.PrintUIOptions;
var myPrintJob:PrintJob = new PrintJob();
var uiOpt:PrintUIOptions = new PrintUIOptions();
uiOpt.minPage = 1;
uiOpt.maxPage = 3;
var accepted:Boolean = myPrintJob.start2(uiOpt);