# \[MX2004\] Printing Problems

**URL:** https://forum.kirupa.com/t/mx2004-printing-problems/140565
**Category:** Uncategorized
**Created:** [March 12, 2005, 1:09am UTC](https://forum.kirupa.com/t/mx2004-printing-problems/140565 "2005-03-12T01:09:57Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![kBisk](https://avatars.discourse-cdn.com/v4/letter/k/eb8c5e/32.png) [@kBisk](https://forum.kirupa.com/u/kBisk)
#### Post date: [March 12, 2005, 1:09am UTC](https://forum.kirupa.com/t/mx2004-printing-problems/140565/1 "2005-03-12T01:09:57Z")

</div>

I’m trying to use the print function in a button, a.s. below:

on(press){  
**print(\_root.instance\_1, “bframe”);**  
}

This works fine…the mc “instance\_1” is the only thing that prints. The problem is that I need to print 2 movieclips at once. So I have tried the following:

on(press){  
**print(\_root.instance\_1+\_root.instance\_2, “bframe”);**  
}

on(press){  
**print(\_root.instance\_1&\_root.instance\_2, “bframe”);**  
}

on(press){  
**print(\_root.instance\_1 and \_root.instance\_2, “bframe”);**  
}

on(press){  
**print((\_root.instance\_1,\_root.instance\_2), “bframe”);**  
}

None of these work though, the entire movie prints instead.  
…any help/suggestions would be greatly appreciated!
