Hi,
I’ve been using the easing class in actionscript for most of my animations because its a lot easier to change something later and the files seem to be smaller. I’ve been coding it mainly like this:
new mx.transitions.Tween (frog, “_alpha”, mx.transitions.easing.None.easeNone, 0, 100, 48, false);
My question is this:
When I want some more animation to happen, say, after the 48 frames that fade in the frog (above), I put a keyframe 48 frames after that and write a new transitions tween. Is there a way to code just in one frame and have a counter that will wait say 2 seconds (24fps) and then run a new tween?