Quote:
//stops the playhead at Frame 1
stop();
//this script takes the user to scene 2 (zoom in on closset) when zoominclosset_btn is released
zoom1btn.onRelease = function (){
gotoAndstop ("Scene 2", 1);
unloadMovie ("zoomclosset_in");
};
//function plays zoomclosset_in when zoom1btn instance is released.
zoom1btn.onRelease = function(){
_root.attachMovie("zoomclosset_in", "zoomclosset_in", 1);
};
Scene 2 is empty so the problem shouls lie here i think. So i just want to play that zoomclosset_in animation and after that go to a new scene when a button is pressed.