este es el código
Código HTML:
square._alpha = 20;
whichPic =1;
_root.onEnterFrame = function() {
if (square._alpha>20 && fadeOut) {
square._alpha -= 20;
}
if (square._alpha<20) {
loadMovie("coleccion/mujer"+whichPic+".jpg", "square");
fadeOut = false;
fadeIn = true;
}
if (square._alpha<100 && fadeIn && !fadeOut) {
square._alpha += 20;
} else {
fadeIn = false;
}
if (input>10) {
input = 10;
}
};
siguiente.onPress = function() {
if (whichPic<10 && !fadeIn && !fadeOut) {
fadeOut = true;
whichpic++;
}
};
volver.onPress = function() {
if (whichPic>1 && !fadeIn && !fadeOut) {
fadeOut = true;
whichpic--;
}
};

