User Guide
694 Chapter 2: ActionScript Language Reference
The Flash Player printing feature supports PostScript and non-PostScript printers. Non-
PostScript printers convert vectors to bitmaps.
Example
The following example prints all the printable frames in holder_mc with a print area defined by
the bounding box of the frame:
this.createEmptyMovieClip("holder_mc", 999);
holder_mc.loadMovie("http://www.macromedia.com/devnet/mx/blueprint/articles/
back_button/sp_mchambers.jpg");
this.myBtn_btn.onRelease = function() {
printAsBitmap(this._parent.holder_mc, "bframe");
};
See also
print(), printAsBitmapNum(), PrintJob class, printNum()