Diaporama en continu

boloq Messages postés 4 Date d'inscription samedi 14 janvier 2006 Statut Membre Dernière intervention 9 février 2006 - 8 févr. 2006 à 16:22
boloq Messages postés 4 Date d'inscription samedi 14 janvier 2006 Statut Membre Dernière intervention 9 février 2006 - 9 févr. 2006 à 21:24
Bonjour,
je débute.
sur flash MX, je fais défiler 4 images dans un movie clip avec des boutons Suivant (next) et Précédent (back).
Je souhaitrai qu'a la dernière image, le bouton Suivant enchaine sur la première image.

Ci-après le code utilisé (fourni avec MX) :

square._alpha = 0;
whichPic = 1;
// initiate change to new image when buttons are clicked
next.onPress = function() {
if (whichPic<4 && !fadeIn && !fadeOut) {
fadeOut = true;
whichpic++;
input = whichPic;
}
};
back.onPress = function() {
if (whichPic>1 && !fadeIn && !fadeOut) {
fadeOut = true;
whichpic--;
input = whichPic;
}
};
_root.onEnterFrame = function() {

if (square._alpha>10 && fadeOut) {
square._alpha -= 10;
}
if (square._alpha<10) {
loadMovie("562-"+whichPic+".jpg", "square");
fadeOut = false;
fadeIn = true;
}
if (square._alpha<100 && fadeIn && !fadeOut) {
square._alpha += 10;
} else {
fadeIn = false;
}
}

en vous remerciant de votre aide

2 réponses

Cgaybeul Messages postés 105 Date d'inscription vendredi 25 juin 2004 Statut Membre Dernière intervention 11 décembre 2006
8 févr. 2006 à 23:53
quelque chose comme ça non :

next.onPress = function() {
if (whichPic<4 && !fadeIn && !fadeOut) {
fadeOut = true;
whichpic++;
input = whichPic;
} else {

fadeOut = true;

whichpic = 1;

input = whichPic;
}
};

et whichpic = 4; pour le bouton back.
0
boloq Messages postés 4 Date d'inscription samedi 14 janvier 2006 Statut Membre Dernière intervention 9 février 2006
9 févr. 2006 à 21:24
Nickel, c'est exactement ça, merci.
0
Rejoignez-nous