[AS3]how to change a mc color

hi

i am trying change a color of a movie clip
When i mouseOver, the mc change for another color .

how can i do that ?

flash.geom.ColorTransform

livedocs knows!

but this change the color like a simple button ? right ?

i want change the color with a tween

Have a look at TweenMax, you can tint objects very easily:

import gs.TweenMax;

TweenMax.to (mc, .5, { tint:0xFF0000 });

thanks :smiley:

in your project folder. :stuck_out_tongue:

sorry but i am a bit noob…

its already working

Thanks :smiley: