PrintJob Issue

I am using the printJob class to print some dynamic elements and it’s working fine, except for when I try to print a .jpg that I am loading in dynamically.

I know the .jpg gets loaded successfully, it just won’t print.

this is what the code looks like:

//tells it what .jpg to load
[COLOR=red]printScreenShot_mc.screeShotLoader.loadMovie(“images/”+currentPage_xmlnode.attributes.pageNum.".jpg");[/COLOR]

//then I tell my pages to print

[COLOR=red]pj.addPage(“print_mc”)[/COLOR] //this pulls in dyn. text and prints fine
[COLOR=red]pj.addPage(“printScreenShot_mc”)[/COLOR] //this prints a blank page, i.e, does not print my .jpg

If anyone has any ideas, I’d appreciate hearing them :-)!