Motion tutorial

you made the backgrounds yourself??? You made all of it yourself???
OMG!
COOL backgrounds and design man!

okay syko, I once again need your help. The action below works perfectly fine when the swf is by itself, but once that swf is loaded into another swf, the action no longer works. I know that _root is the main timeline so I’m guessing if I load it into another swf file, the _root is now different. How do I rewrite the action so that it refers to the _root of the first swf instead of the one its loaded into?

on(release) {
_root.gotoAndPlay(“data”);
}

Nevermind syko, I figured it out, instead of using _root, I tried _parent instead and it works. =)

I was at school! so I couldn’t answer before…
You could use _parent but you could also use the more complicated way =) :stuck_out_tongue:
the _root. is now the root of the main movie and you can merge the 2 movieclip hierarchies. like
_root.mainmovie.loadedmovie.lmmc.play();
like if loadedmovie is where you loaded the movie and lmmc is the movieclip you want to start playing… or sumthin’ like that! :slight_smile: