Tema: Boton flash
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 17/03/2011, 05:11
Pimager
 
Fecha de Ingreso: julio-2010
Mensajes: 298
Antigüedad: 14 años, 6 meses
Puntos: 8
Respuesta: Boton flash

Hola abaezri, prueba lo siguiente:

Código:
nxt_btn.onRelease = function (){
var maxFrames = 23;
var wichFrame = (_root.currentFrame + 1) % maxFrames;
gotoAndStop(wichFrame);
}

prev_btn.onRelease = function (){
var maxFrames = 23;
var wichFrame = (_root.currentFrame - 1) % maxFrames;
gotoAndStop(wichFrame);
}
A ver si te sirve
Pimager