PrintClass Help!

Hello,
I am having an issue with my print class, every time
I try and print the movie clip in question I can not get the layer that has a blending style to apply in the image. Is there some way to have it cache that blend mode into a bitmap or something when it sends it to print? Thank you, here is my code.


// Button Scripts
print_btn.onRelease = function() {
    var printJ = new PrintJob();
    var success = printJ.start();
    if (success) {
        printJ.addPage(_root.image_mc, undefined, printAsBitmap);
        printJ.send();
    } else {
        trace("You cancled.");
    }
    delete printJ;
}