Hola, prueba este código.
Código:
mi_mc.onRollOver = function() {
this.onEnterFrame = function() {
this._alpha -= 10;
if (this._alpha <= 0) {
delete (this.onEnterFrame);
}
}
}
mi_mc.onRollOut = function() {
this.onEnterFrame = function() {
this._alpha += 10;
if (this._alpha>=100) {
delete (this.onEnterFrame);
}
}
}
Espero te sirva.
Saludos desde México.