tendrias que aniadirle una condicion a la funcion que cambia las imagenes, que SI llego al final de arreglo ya no incremente, algo asi
Código PHP:
this.onKeyDown = function() {
if (Key.getCode() == Key.LEFT) {
this.changePhoto(-1);
} else if (Key.getCode() == Key.RIGHT) {
//Esta es la linia que para el avance cuando llega a la ultima foto
if(this.pIndex < pArray.length)
this.changePhoto(1);
}
};
Key.addListener(this);
//Código para el botón Anterior:
on (release) {
_root.changePhoto(-1);
}
//Código para el botón Siguiente:
on (release) {
//Esta es la linia que para el avance cuando llega a la ultima foto
if(this.pIndex < pArray.length)
this.changePhoto(1);
}
have funnnnnnnn!!!