boloq
Messages postés4Date d'inscriptionsamedi 14 janvier 2006StatutMembreDernière intervention 9 février 2006
-
8 févr. 2006 à 16:22
boloq
Messages postés4Date d'inscriptionsamedi 14 janvier 2006StatutMembreDerniè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() {