associa questo al pulsante:

codice:
on(release){
	fine = _currentframe + 10;
	play();
	this.onEnterFrame = function(){
		if (_currentframe == fine) {
			this.stop();
			delete this.onEnterFrame;
		}
	}
}