Como siempre muchas gracias, nos vemos y que pasen feizes fiestas.
Código :
// initialize variables and properties
square8._alpha = 0;
whichPic = 1;
// initiate change to new image when buttons are clicked
next.onPress = function() {
if (whichPic<15 && !fadeIn && !fadeOut) {
fadeOut = true;
whichpic++;
input = whichPic;
}
};
back.onPress = function() {
if (whichPic>1 && !fadeIn && !fadeOut) {
fadeOut = true;
whichpic--;
input = whichPic;
}
};
_root.onEnterFrame = function() {
// when a new Photo is selected, fade out, load new image, and fade in
if (square8._alpha>10 && fadeOut) {
square8._alpha -= 10;
}
if (square8._alpha<10) {
loadMovie("images/fam/fam"+whichPic+".jpg", "square8");
fadeOut = false;
fadeIn = true;
}
if (square8._alpha<100 && fadeIn && !fadeOut) {
square8._alpha += 10;
} else {
fadeIn = false;
}
// limit input field
if (input>15) {
input = 15;
}
// initiate change to new image when Enter key is pressed
if (Key.isDown(Key.ENTER)) {
fadeOut = true;
whichpic = input;
}
};
// if a number is entered in the input field but Enter is not pressed, change
// back to current Photo number when clicking anywhere else
inputField.onKillFocus = function() {
input = whichPic;
};
