Hi
I would like to tint a movieclip with the tweener class.
This is how I tint the mc without the tween:
var c:Color=new Color();
c.setTint(0xff0000, 0.8); clouds.transform.colorTransform=c;
it works but I would like to give it a smooth transition that's why I would use tweener.
Anyone have an idea?