Salut,
Mmmmh ... il me semble que tu peux jouer sur l'image courante pour aller en avant ou en arrière en le placant dans un enterFrame:
this.clip.addEventListener(MouseEvent.MOUSE_OUT, functionBack);
function functionBack(event:Event):void {
if (this.clip.currentFrame >1) {
this.clip.addEventListener(Event.ENTER_FRAME, functionBack);
this.clip.gotoAndStop(this.clip.currentFrame-1);
}
@+.
telov.ch