Este es el código en Flash MX para hacer el efecto deasanecimiento sobre un mc, para los expertos, ¿como lo harían en Flash 5?
MovieClip.prototype.alfa = function() {
var incremento = 0;
this.onEnterFrame = function() {
if (incremento<100) {
this._alpha = incremento;
incremento++;
} else {
delete this.onEnterFrame;
}
};
};
//
mc.alfa();
Ojalá me ayuden. Gracias