Can you make a button “gotoandplay” a frame and then after a certain point in the timeline a movieclip would load?
this is my code now:
on (press) {
gotoAndPlay(“play”);
createEmptyMovieClip(“orthoagainmc”, 50);
orthoagainmc._x = 110;
orthoagainmc._y = 19;
orthoagainmc.loadMovie(“ortho.swf”);
}
but the ortho.swf loads before I want it too. ( before the action that starts at frame “play” ends. I want the ortho.swf to start after the action ends.