¿Cómo puedo imprimir con Flash Player 6.0 o menor?
on(release){
var my_pj = new PrintJob();
var myResult = my_pj.start();
if (myResult) {
myResult = my_pj.addPage("_root.vacio", {xMin: -30, xMax:800, yMin:-300, yMax:500}, {printAsBitmap:true});
my_pj.send();
}
delete my_pj;
}
