Bandit!... Gracias por tu ayuda... Eso mismo he hecho antes entre prueba y prueba pero sucede que de esta manera los botones (en MC) no me funcionan. Por si puedes ayudarme en algo, los botones tienen el siguiente code:
Cita: on (rollOver) {
onEnterFrame = function () {
if (this._currentframe != 10) {
this.nextFrame();
} else {
this.stop();
delete this["onEnterFrame"];
}
};
}
on (rollOut) {
onEnterFrame = function () {
if (this._currentframe != 1) {
this.prevFrame();
} else {
this.stop();
delete this["onEnterFrame"];
}
};
}
on (release) {
_root.gotoAndStop("f1");
}