Help! PRINTJOB scales the flash-swf-content when i print

hi, im having a problem with printjob on my flip-book.
I get it to work so no problem there,
but as i press the button, the swf window scales everything :open_mouth:

And the strangest thing is that it turns to normal if i double click the blue swf bar at the top.

here is some screen shots:

** Before printing:**

** After printing:** (BTW: in this example im ā€œprintingā€ a little object at 0% alpha, just to save printer paper (the visuall-scaling actully isnā€™t that bad as this when i printed the Real page, but still a bit scaled)

I dont know if it will help, but here is the actionscript for the button:

on (release) {
var printJob = new PrintJob();
    if (printJob.start())
{
var numPages:Number = 0;
if (printJob.addPage("test2_mc"))
{
trace(numPages)
numPages ++;
}
// etc.
if (numPages> 0)
{
trace('sending..');
printJob.send(); // print page(s)
}
}
delete printJob; 
}

Note, that this is a button inside a flip book. not sure if the flipbook ActionScript is interfering, butā€¦

If anyone got a clue what it might be, i would gladly hear what you think:kir:

Please helpā€¦