Me explico...creo un MC...y a dentro hago una animacion...
En el primer Frame coloco este AS
Código :
stop();
this.onEnterFrame = function() {
if (rewind == true) {
prevFrame();
}
};
this.onRollOver = function() {
rewind = false;
play();
};
this.onRollOut = function() {
rewind = true;
this.onRelease = function() {
_root.gotoAndStop(2);
};
};Funciona hasta cierto punto, al rollover se reproduce, y al rollout vuelve uno a uno, lo que quiero es qeu tenga sonido...
No se como, me dan una mano?...
Gracias!...
