http://www.cristalab.com/tutoriales/123/boton-con-fade-in-y-fade-out-animado
Pero cuando veo el ejemplo no funciona.... este es el código del botón:
Código :
on (rollOver) {
mc_animado.onEnterFrame = function () {
if (this._currentframe != 20) {
this.nextFrame();
}
else {
this.stop();
delete this["onEnterFrame"];
} // end if
};
}
on (rollOut) {
mc_animado.onEnterFrame = function () {
if (this._currentframe != 1) {
this.prevFrame();
}
else {
this.stop();
delete this["onEnterFrame"];
}
};
}Saludos
