Hi everyone, i have been working on this application which loads a lot of external swf files, scales them and then i needed user to print each swf on a separate page. To do this, i created a new movieclip and created blank keyframes in it and on every frame i wrote “loadmovie” command to load these swf files.
Everything worked fine until i got to printing. I had used printjobclass to create a job and print pages/frames as per user selection. But no matter what i do it only prints one page, the last frame of that movieclip. Code is as below :
var pj = new PrintJob();
var success = pj.start();
if(success)
{
for(var i=1;i<=mpages;i++)
{
pj.addPage(“mc_print”,{xMin:0,xMax:612,yMin:0,yMax:792},{printAsBitmap:false},i);
}
pj.send();
}
delete pj;
I was just wondering if any of you guys have worked on something similar encountered the same issue and found a way to get it working.
Any help on this is highly appreciated.
rohit:)