i have a button in Movie X which is on level 1. When clicked, this button needs to load Movie Y onto level 1, and also load Movie Z into a container movie clip (let's call it containerMC) in Movie Y.
i know this must be a little confusing but i don't jknow how else to explain it. i've tried a couple of methods but just can't seem to get Movie Z to load into the containerMC.
here's the script attached to the button in Movie X:
ActionScript Code:
on (release) {
loadMovieNum("MovieY.swf", 1);
this.onEnterFrame = function(){
if(_level1.getBytesLoaded() >= _level1.getBytesTotal()){
//load Movie Z into container movie clip in Movie Y...
loadMovie("MovieZ.swf", _level1.containerMC);
}
};
}
can anyone help me pleeeease? it's pretty urgent. thanks in advance.