Merci mec . C'était pas tout à fait ça mais ça m'a aidé dans ma recherche.
Cest ce script :
Rewind = function(cible) {
cible.prevFrame();
if (cible._currentframe == 1) {
clearInterval(tempo);
}
}
_root.bout.onRelease = function () {
tempo = setInterval(Rewind, 10, _root.cont);
;
}
_root.bout.onRollOut = function() {
tempo = setInterval(Rewind, 10, _root.cont);
}
_root.bout.onRollOver = function () {
_root.cont.play() ;
}
Voila pour les intéressés....