■ プリンタの設定を調べるには
//メインタイムラインのフレームアクション
this._btn.onRelease
= function(){
var _pj
= new PrintJob();
if(_pj.start()){
paper_txt.text = _pj.paperWidth
+ "×" + _pj.paperHeight;
page_txt.text = _pj.pageWidth
+ "×" + _pj.pageHeight;
if (_pj.orientation == "portrait"){
mes_txt.text = "用紙方向を「横」にしてください";
}else{
if (_pj.addPage("_mc",null,null,6)){
mes_txt.text = "印刷中です";
_pj.send();
}
}
}
};

