Skip to main content
sharonp82383318
Participant
September 18, 2015
Question

Flash CC How to Print

  • September 18, 2015
  • 1 reply
  • 490 views

Hi I have created an animation in which I need to print to create a storyboard.  I have spoken to Adobe Tech Support and they are  unable to help and advised I seek help here.

Thanks

Sharon

This topic has been closed for replies.

1 reply

kglad
Community Expert
Community Expert
September 18, 2015

use the printjob class to print from flash:

var pj:PrintJob=new PrintJob();

if(pj.start()){

pj.addPage(sprite, printArea);

pj.send();

}