Animation (no looping?) "autoscript"

Hi all!
When i push a button, i want my animation to stop looping when it has played 1 time. Then skip to scene 2 (wich will contain the last image of that animation) then from there pressing a button to go back or play another animation. But that would be easy if my animation just stops looping. I think i have unchecked every loop option, This is what i have now and this is my code for scene 1:

//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.

I hope someone can help me out. thnx!