Non funziona 
mi aiuti per favore ?
Grazie !
codice:
MovieClip.prototype.solar = function (defcolor) {
this.c = new Color(this);
this.o = new Object({rb:255,gb:255,bb:255});
ID_conta = setInterval(conta, 2000);
function conta() {
clip.up = false
}
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;
}
}
}