_root.contenst.LoadMovie HELP ! PLZ

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

Please help me out !

Thank you very much for your help !

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 ??? =)

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

DoThis::

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

Thats why it did not work !

Thank you very very much for your help !

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

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

:stuck_out_tongue: