Ver Mensaje Individual
  #5 (permalink)  
Antiguo 01/06/2006, 13:41
Avatar de andrewp
andrewp
 
Fecha de Ingreso: agosto-2003
Ubicación: Barcelona
Mensajes: 1.160
Antigüedad: 20 años, 8 meses
Puntos: 5
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");
}
__________________
Andrew :P