# \_root.contenst.LoadMovie HELP ! PLZ

**URL:** https://forum.kirupa.com/t/-root-contenst-loadmovie-help-plz/18056
**Category:** Uncategorized
**Created:** [April 12, 2003, 7:29pm UTC](https://forum.kirupa.com/t/-root-contenst-loadmovie-help-plz/18056 "2003-04-12T19:29:01Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![Wayne](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/wayne/32/16501_2.png) [@Wayne](https://forum.kirupa.com/u/Wayne)
#### Post date: [April 12, 2003, 7:29pm UTC](https://forum.kirupa.com/t/-root-contenst-loadmovie-help-plz/18056/1 "2003-04-12T19:29:01Z")

</div>

I have contents and contents2 as a movie clip !

I have placed contents in the upper header and the contents2 Under"down the Page "

I have a home buttom !

I whant when i press Home it will call up the contents and contents2 to load up 2 swf files in each other so i tryd ==\>

On release

“Call funtion” !  
\_root.contents  
LoadMovie  
“HomeIMG.swf”

I added the same as above under it agein to load the other file in other to contents2

On release  
\_root.contents  
loadMovie  
“Hometxt.swf”

But it loads the furst one and not the last one ?  
WHy and how !

-Note\_ “Contents” loads the image and “Contents2” loads the text under the image thats the window under the image.

this is the interface.  
[http://www.home.no/millad/Layout/1.gif](http://www.home.no/millad/Layout/1.gif)

Please help me out !

Thank you very much for your help !

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [April 13, 2003, 4:58am UTC](https://forum.kirupa.com/t/-root-contenst-loadmovie-help-plz/18056/2 "2003-04-13T04:58:31Z")

</div>

tell me that is _not_ how you’re writting it out :!:

keep in mind that misspelling and leaving out things or nameing both the target clips the same will screw it all up …

**also you can put both actions under one "onRelease"**

now, how did you _really_ write it out ??? =)

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [April 13, 2003, 6:36am UTC](https://forum.kirupa.com/t/-root-contenst-loadmovie-help-plz/18056/3 "2003-04-13T06:36:58Z")

</div>

Actually - the second “onRelease” will allways be ignored,

DoThis::

onRelease{  
\_root.contents.loadMovie(“HomeIMG.swf”);  
\_root.contents2.loadMovie(“Hometxt.swf”);  
}

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [April 13, 2003, 9:12am UTC](https://forum.kirupa.com/t/-root-contenst-loadmovie-help-plz/18056/4 "2003-04-13T09:12:57Z")

</div>

Thats why it did not work !

Thank you very very much for your help !

I love Actionscript but im 3% good at it ! :love:

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [April 13, 2003, 9:15am UTC](https://forum.kirupa.com/t/-root-contenst-loadmovie-help-plz/18056/5 "2003-04-13T09:15:24Z")

</div>

Yes i write this script ! in flash mx actionscript its like this

onRelease{  
\_root.contents.loadMovie(“HomeIMG.swf”);  
}  
OnRelease{  
\_root.contents2.loadMovie(“Hometxt.swf”);  
}

LOL

now

onRelease{  
\_root.contents.loadMovie(“HomeIMG.swf”);  
\_root.contents2.loadMovie(“Hometxt.swf”);  
}

Thanx to you

😛
