Problems w/ printJob printing movie clips in other frames

Hello,

I have a little function that I'm calling from a button that prints the contents of a movie clip.

I would like to also print another frame that’s not the current visible frame.

Here’s my function:

function print_movie_contents( print_page )
{
var my_pj:PrintJob = new PrintJob();
var myResult:Boolean = my_pj.start();

 if( myResult) 
 {
        my_pj.addPage( print_page ); 
        my_pj.send();
  }               
 
 delete my_pj;

}//endFunc

Is this possible in any way?

Thanks,
Clem C