# AS2 - printJob doubt

**URL:** https://forum.kirupa.com/t/as2-printjob-doubt/596309
**Category:** programming
**Created:** [March 31, 2015, 8:19pm UTC](https://forum.kirupa.com/t/as2-printjob-doubt/596309 "2015-03-31T20:19:15Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![pistelli](https://avatars.discourse-cdn.com/v4/letter/p/9d8465/32.png) [@pistelli](https://forum.kirupa.com/u/pistelli)
#### Post date: [March 31, 2015, 8:19pm UTC](https://forum.kirupa.com/t/as2-printjob-doubt/596309/1 "2015-03-31T20:19:15Z")

</div>

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!

---

<div class="post-metadata">

### Author: ![pistelli](https://avatars.discourse-cdn.com/v4/letter/p/9d8465/32.png) [@pistelli](https://forum.kirupa.com/u/pistelli)
#### Post date: [April 2, 2015, 6:25pm UTC](https://forum.kirupa.com/t/as2-printjob-doubt/596309/2 "2015-04-02T18:25:41Z")

</div>

OK! PrintAsBitmap solved the problem!
