Event handler

Hello,
I have a simple question,

Iā€™m making a movie quiz and at the end i have an animation inside a movie clip and when the person gets to the last frame I want that animation to play but only one time instead of playing it 12 times per second so I would like to know if there is an event handler that does this, for example:


onClipEvent(enterFrame){ //<--- this is the event handler want to replace
if(_root.Score ==100){
_root.ball.gotoAndPlay("AdvancedM");
}
}

thanks :slight_smile: