I use the script below to do the printing of a movie clip.
on(release){
var pj.PrintJob = new PrintJob();
if( pj.start() ) {
if( pj.addPage( 0 ) ) {
pj.send();
}
}
delete pj;
}
However, because the stage size is 800 x 600, it doesnt fit into an A4 size paper.
How do I edit the actionscript above to rescale it to fit the paper size?
Or perhaps print it in landscape format?