ok so I have MovieA, which loads MovieB.
MovieB wants to change the color of the first movie, slowly darkening it.
so I tried a for loop:
darkenBGColor = new Color(_level0.instance1.bg);
darkenCAColor = new Color(_level0.instance1.ca);
for(i = 100; i >= 50; i-1){
dark.ra = i;
dark.ga = i;
dark.ba = i;
darkenBGColor.setTransform(dark);
darkenCAColor.setTransform(dark);
}
but the change happens so fast that you can’t even tell. Is there a way that I can slow this effect down so it looks like I have tweened the change in color over maybe 10 frames?
or if you think it can be more easily done in another manner, please let me know