ciao guardando il codice presente online nel tutorial, se aggiungi la parte evidenziata in rosso diminuisce l'alpha a 50 se passi con il mouse sulle thumbs e torna a 100 se ti sposti su un'altra foto ,al posto dell'effetto alpha mettici cio' che vuoi .........
codice:
MyGallery = new XML();
MyGallery.ignoreWhite = true;
MyGallery.load("galleria.xml");
MyGallery.onLoad = function(success) {
numeroimmagini = this.firstChild.childNodes.length;
spazio = 100;
for (i=0; i
this.anteprima_mc = anteprime.createEmptyMovieClip("anteprime"+i, i);
this.anteprima_mc._x = i*spazio;
this.percorsi = this.firstChild.childNodes[i];
this.anteprimaLoader = this.anteprima_mc.createEmptyMovieClip("immagini_anteprime", 0);
this.anteprimaLoader.loadMovie(this.percorsi.attributes.anteprima);
this.anteprima_mc.titolo = this.percorsi.attributes.titolo;
this.anteprima_mc.grande = this.percorsi.attributes.grande;
this.anteprima_mc.onRelease = function() {
grandeloader.loadMovie(this.grande);
titolo_txt.text = this.titolo;
};
this.anteprima_mc.onRollOver = function() {
this._alpha=50; //e' solo un esempio
};
this.anteprima_mc.onRollOut = function() {
this._alpha=100; //e' solo un esempio
};
}
};