Print Job Bug?

Hi friends. In a week ago i treid to print in my web application. I have a ScollPane and movieclip to print. He print the visible area (without scrollbar) but i need to print all movieclip. Some solution for this?

My Code.

Code:
print_btn.onRelease = function ()
{
var my_pj = new PrintJob ();
var myResult = my_pj.start ();
if (myResult)
{
myResult = my_pj.addPage (0, {xMin:0, xMax:600, yMin:0, yMax:800});
myResult = my_pj.addPage ("_root.pane.spContentHolder.pedido_mc", {xMin:0, xMax:800, yMin:800, yMax:2600}, {printAsBitmap:true}, 2);
myResult = my_pj.addPage (1, null, {printAsBitmap:false}, 2);
myResult = my_pj.addPage (0);
my_pj.send ();
}
delete my_pj;
};
pane.setSize ("" + Stage.width + “”, “” + Stage.height + “”);
var stageListener:Object = new Object ();
stageListener.onResize = function ()
{
pane.setStyle (“borderStyle”, “none”);
pane.setSize ("" + Stage.width + “”, “” + Stage.height + “”);
};
Stage.scaleMode = “noScale”;
Stage.addListener (stageListener);