Per partire:
E poi NextImm() e PrevImm() per andare avanti e tornare indietro..codice:image = ["immagine1.jpg", "immagine2.jpg", "immagine3.jpg", "immagine4.jpg"]; count = -1; function NextImm() { if(count < image.length - 1)clip.loadMovie(image[++count]); } function PrevImm() { if(count > 0)clip.loadMovie(image[--count]); } NextImm();