# \[MX2004\] Printing Problem

**URL:** https://forum.kirupa.com/t/mx2004-printing-problem/82710
**Category:** flash
**Created:** [March 12, 2005, 3:59pm UTC](https://forum.kirupa.com/t/mx2004-printing-problem/82710 "2005-03-12T15:59:12Z")
**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, 3:59pm UTC](https://forum.kirupa.com/t/mx2004-printing-problem/82710/1 "2005-03-12T15:59:12Z")

</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!
