PDA

View Full Version : How to Slow Down Animation


crunk66
03-05-2007, 03:31 PM
Hi,

Does anyone know if there is a simple way to slow down only certain parts of a flash movie?

I know you can change the overall frame rate, but that would affect the whole movie, and I would only like to change the rate for certain animations that are currently moving too fast.

Any ideas would be much appreciated!

sd9sd
03-06-2007, 06:24 AM
keep variables for each movieClip. Like m1AnimationSpeed, m2AnimationSpeed.
And keep timer variables. t=getTimer();
And m1Timer, m2Timer etc....
whenever (t-m1Timer>a certain value) {execute the animation according to AnimationSpeed; m1Timer=t;}
And so on......