interpolateTransform

I’m trying to ease from one color to another, is there some other way besides the interpolateTransform() function to do this?

Thanks,

how about using the setTint() method and steadily increasing the percentage of the tint color being applied?

as in (within your enter frame function),

 [LEFT] 	ActionScript Code:
[LEFT][COLOR=#808080]*// change to red*[/COLOR]

[COLOR=#000000]var[/COLOR] tintColor:uint = 0xFF0000;
[COLOR=#808080]// percentage to apply the tint color[/COLOR]
[COLOR=#000000]var[/COLOR] percent:[COLOR=#0000FF]Number[/COLOR] = [COLOR=#000080]0[/COLOR];

[COLOR=#000000]var[/COLOR] [COLOR=#0000FF]color[/COLOR]:Color = [COLOR=#000000]new[/COLOR] [COLOR=#0000FF]Color[/COLOR]COLOR=#000000[/COLOR];
[COLOR=#0000FF]color[/COLOR].[COLOR=#000080]setTint[/COLOR]COLOR=#000000[/COLOR];
mc.[COLOR=#000080]transform[/COLOR].[COLOR=#000080]colorTransform[/COLOR] = [COLOR=#0000FF]color[/COLOR];

[COLOR=#808080]// then increment the percentage[/COLOR]
percent += [COLOR=#000080]2[/COLOR];
[/LEFT]

[/LEFT]

■■■■, that’s sweet, good thinking, I’ll definitly try that