:red:
I am trying to load multiple MCs on one screen. I am using a singular navigation bar to do this with. Each button press:
on(release) {
tellTarget ("_root.mc.firstmovie"){
gotoAndPlay(2);
}
}
Unless I add in an additional script to gotoAndPlay(1); //blank screen, each movie will appear on top of the next. I am using this method to try and stay working with embedded movies. Would I be better off to use an empty movie container to switch, and can I somehow still refer to a ‘hidden’ movie within an empty movie container so I do not have to reference an external swf?
If so, is this correct (for each button):
on(release) {
loadMovie(http://www.mysite.com/swf/test1.swf, instanceNameofemptyclip);
}
How would I create that empty clip?