_root.createEmptyMovieClip("container_mc2", 1);
loadMovie("menu_load.swf",_root.container_mc2);
//the menu_load contains following on one of its buttons
on (release) {
_root.soundBG.stop();
_root.container_mc2.loadMovie("megascreen.swf");
}
// megascreen movie has the code for the lovely transition effect:
onClipEvent(enterFrame){
this.onMouseDown = function(){
if(this.hitTest(_root.mimo)) {
//trace("yeah");
mx.transitions.TransitionManager.start(_root.dogmc, {type:mx.transitions.Zoom, direction:0, duration:2, easing:mx.transitions.easing.Elastic.easeOut, param1:empty, param2:empty});
}
}
}
BUT the transition effect only works when the megascreen movie is on its own and NEVER works when loaded into the other movies???
