First of all, thanks for your speed to answer my question:
I found this in that site:
Color.prototype.setTint = function (r, g, b, amount) {
var trans = new Object();
trans.ra = trans.ga = trans.ba = 100 - amount;
var ratio = amount / 100;
trans.rb = r * ratio;
trans.gb = g * ratio;
trans.bb = b * ratio;
this.setTransform(trans);
put that code in the first frame of the movie so its run and defined for flash as soon as the movie starts. Then you can use it with a color object just like you would setRGB or setTransform
myColor = new Color(myClip);
//set myClip's tint to be 50% red
myColor.setTint(255,0,0, 50);
hi guys,
i've implemented the above and it works great, thanks a lot. i'm wondering how i can add a 'tween' delay from one color to the other of say, 1 second.
any ideas would be greatly appreciated,
-gonecat