プリンタの設定を調べるには

//メインタイムラインのフレームアクション
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();
}
}
}
};
・サンプルを実行
・サンプルをダウンロード
Action Script逆引きクイックリファレンス 説明などは本書を参考にしてください。