2009

Table Of Contents
The flattened Balloon returns to its correct position at the origin.
8 Play the animation.
Balloon inflates for two seconds, then rises. As it rises, it jumps slightly
higher at approximately frame 48.
Fixing a problem in an expression
As mentioned before, Balloon skips from Y-axis position 0 to 2 after two
seconds of animation play. You can eliminate the skipping and make Balloon
rise smoothly from the origin.
To fix the skipping in the animation
1 Stop the animation and go to the start time.
2 Change the expression as follows. (Changes are displayed in bold print.)
if (time < 2)
Balloon.translateY = 0;
if (time < 2)
Balloon.scaleY = time;
if (time >= 2)
Balloon.translateY = time - 2;
3 Click Edit.
Playback the animation. Balloon inflates for 2 seconds, then rises slowly
and smoothly with time, from its position at the origin.
Fixing a problem in an expression | 579