User Guide

PrintJob.send() 703
PrintJob.send()
Availability
Flash Player 7.
Usage
my_pj.send() : Void
Parameters
None.
Returns
Nothing.
Description
Method; used following PrintJob.start() and PrintJob.addPage() to send spooled pages to the
printer. Because calls to
PrintJob.send() will not be successful if related calls to
PrintJob.start() and PrintJob.addpage() failed, you should check that calls to
PrintJob.addpage() and PrintJob.start() were successful before calling PrintJob.send():
var my_pj:PrintJob = new PrintJob();
if (my_pj.start()) {
if (my_pj.addPage(this)) {
my_pj.send();
}
}
delete my_pj;
Example
See PrintJob.addPage() and PrintJob.start().
See also
PrintJob.addPage(), PrintJob.start()