Bonjour à tous,

Je précise, je débute en AS

Je cherche à faire fonctionner un clip comme un bouton en AS3.

En AS2, on avait ceci

this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}
this.onRollOver = function(){
rewind = false;
play();
}
this.onRollOut = function(){
rewind = true;
}
this.onRelease = function(){
getURL("http://maquette.cscomm.net/","_blank");

}
this.onReleaseOutside = function() {
rewind = true;
}


En AS3, quelqu’un a-t-il la solution ?

Je sais, je vais au plus facile…

Merci d’avance

JP