Réponse acceptée !
salut
un stop () sur la permiere image : up - over - down - hit
//pour l'état au dessus "up"
this.clipBouton.onRollOver = function() {
clipBouton.gotoAndStop("up");
};
//pour l'état over
this.clipBouton.onRollOut = function() {
clipBouton.gotoAndStop("over");
};
//pour l'etat down
this.clipBouton.onPress = function() {
clipBouton.gotoAndStop("down");
};
//pour l'etat relaché "hit"
this.clipBouton.onRelease = function() {
clipBouton.gotoAndStop("hit");
};
pour l'etat relacher tu peux aussi choisir gotoAndPlay("hit")
si tu as positionner l'image "hit" à la fin de la séquence pour que le bt revient aussitôt en position up....