Salve,

mi servirebbe per favore un'aiuto:

Sul forum ho trovato questo codice as da applicare a un clip "mc":

codice:
MovieClip.prototype.solar = function (defcolor) {
	this.c = new Color(this);
	this.o = new Object({rb:255,gb:255,bb:255});
	this.up = true;
	this.onEnterFrame = function () {
		if (this._alpha<100) {
			this._alpha += 10;
		}
		if (!this.up) {
			this.o.rb -= 10;
			this.o.gb -= 10;
			this.o.bb -= 10;
		} else {
			if (this.o.rb<=255) {
				this.o.rb *= 1.5;
				this.o.gb *= 1.3;
				this.o.bb *= 3;
			} else {
				this.o = {rb:255, gb:255, bb:255};
				this.up = false;
			}
		}
		this.c.setTransform(this.o);
		if (this.o.rb<=0) {
			this.o = defcolor;
			this.c.setTransform(this.o);
			delete this.onEnterFrame;
		}
	}
}

mc.solar();
l'effetto è simile alle foto in entrata come QUI


Quello che vorrei è:

che la foto resti visibile per 1/2 secondi poi scompare (dissolvenza) e ne appare un'altra sempre con lo stesso effetto.

insomma, che ci siano tre foto che girano,
e dopo incomincia di nuovo con la prima.

Come posso fare ?

Grazie !!!!