Hi, I’m trying to find a simple (10 lines of code maximum) way to fade my movie clip color to another color. I’ve got this code on my movie:
mc_test.onEnterFrame = function() {
color = 0x00FF00;
my_color = new Color(mc_test);
my_color.setRGB(color);
};
it works but it doen’t fade.
I know I can get the desired effect with tweens, but I want to use actionscript on this.
Can anyone give me a hand?
I’m hanging here!!
thkx.