Hola chikos...

tongo este codigo que permite navegar y explorar las fotos de una determinada carpeta, con efecto alfa y kon sus respectivos btn de nex y prev.

el problema es ke....

kuando ejekuto mi pelicula solo muestra la primera imagen y ahi se keda...al presionar el btn nex reacciona solo el efecto alfa pero al mismo tiempo aparece nuevamente la misma imagen. no se, no avanza ni detrocede. :crap:


fotos._alpha = 0;
whichPic = 1;
next.onPress = function() {
if (whichPic<74 && !fadeIn && !fadeOut) {
fadeOut = true;
whichpic++;
}
};
back.onPress = function() {
if (whichPic>1 && !fadeIn && !fadeOut) {
fadeOut = true;
whichpic--;
}
};
_root.onEnterFrame = function() {
if (fotos._alpha>10 && fadeOut) {
fotos._alpha -= 10;
}
if (fotos._alpha<10) {
loadMovie("images/2/foto"+whichPic+".jpg", "fotos");
fadeOut = false;
fadeIn = true;
}
if (fotos._alpha<100 && fadeIn && !fadeOut) {
fotos._alpha += 10;
} else {
fadeIn = false;
}
if (input>7) {
}
if (Key.isDown(Key.ENTER)) {
fadeOut = true;
}
};
inputField.onKillFocus = function() {
};


espero ke me ayuden!! gracias! :wink: