Código:
como ven, insight_mc es el primer movie clip y me faltan los demas, insight_txt_mc es el texto que realiza el efecto...gracias por su ayuda... import fl.transitions.Tween;
import fl.transitions.easing.*;
insight_mc.buttonMode = true;
sintoma_mc.buttonMode = true;
divan_mc.buttonMode = true;
conciencia_mc.buttonMode = true;
juegos_mc.buttonMode = true;
placebo_mc.buttonMode = true;
inconciente_mc.buttonMode = true;
mente_mc.buttonMode = true;
catarsis_mc.buttonMode = true;
insight_mc.addEventListener(MouseEvent.ROLL_OVER, alfain);
insight_mc.addEventListener(MouseEvent.ROLL_OUT, alfaout);
function alfain(e:MouseEvent):void
{
new Tween(insight_mc.insight_txt_mc,'alpha',Strong.easeOut,insight_mc.insight_txt_mc.alpha,1,3,true);
}
function alfaout(e:MouseEvent):void
{
new Tween(insight_mc.insight_txt_mc,'alpha',Strong.easeOut,insight_mc.insight_txt_mc.alpha,.4,3,true);
}

