AS2 - printJob doubt

Hi all!
I have a movie clip instanced “toprint”. It contains 6 movieclips inside. One of them is only black outlined. I can change the colors of the other 5 movie clips by clicking on them using “set.RGB”, and after I select the correct colors I want to print it. A kind of colorizing book.
The problem is when I print the “toprint” movieclip I can´t print it filled with colors. Printout shows me only the outlined one.

Just for test I used this code in a button:

on(release){
printme = new PrintJob();
printme.start();
printme.addPage (“toprint”)
printme.send();
delete printme;
}

Any help please!

OK! PrintAsBitmap solved the problem!