# Load movie with print botton in main movie

**URL:** https://forum.kirupa.com/t/load-movie-with-print-botton-in-main-movie/20986
**Category:** Uncategorized
**Created:** [May 15, 2003, 1:58pm UTC](https://forum.kirupa.com/t/load-movie-with-print-botton-in-main-movie/20986 "2003-05-15T13:58:33Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![corinne](https://avatars.discourse-cdn.com/v4/letter/c/46a35a/32.png) [@corinne](https://forum.kirupa.com/u/corinne)
#### Post date: [May 15, 2003, 1:58pm UTC](https://forum.kirupa.com/t/load-movie-with-print-botton-in-main-movie/20986/1 "2003-05-15T13:58:33Z")

</div>

I load a movie (movie1.swf) in my main swf (main.swf):

on (release) {  
\_root.contents.loadMovie(“movie1.swf”);  
}

no probleme there.

In my movie1.swf I have a botton with the actionscript:  
on (release) {  
printNum(\_root.printMc, “bmax”);  
}

This botton print my printMc when I played my movie1.swf  
but if I load movie1.swf in main.swf, it does not print my printMc.

If I load my movie1.swf in my main.swf in level0 it worked but I loose my design of course.

What to do…
