Controlling the main.swf from a loaded sub.swf
Hi All
Hope you can help me. I am loading a subMovie in to a mainMovie onto level 2 using the loadMovie command, I am trying to control the mainMovie from within the subMovie. ie When I click a button in the subMovie I want it to unload the subMovie and go to a specific frame lable in the mainMovie this is what I am doing but it aint working pls help
on (release) {
_root.gotoAndPlay("welcome"); ('welcome' is in mainMovie)
}
on (release) {
unloadMovieNum(2);
}
d
|