I’m using the Tween classes… and the animation I’m getting is really poor.
Is there anything better?
The animation I’m getting is ‘jagged’ especially at the end.
I don’t think it’s my code, but just in case, I’m using similar to the following:
import mx.transitions.Tween;
var myTween:Tween = new Tween(myMovieClip_mc, “_x”, mx.transitions.easing.Elastic.easeOut, 0, 300, 3, true);
One of things I want is to have an elastic effect at the end.
If I use the above example code (this is the example code from the Flash help) then it’s OK if I’m tweening a small distance: but if I tween from a bigger distance… the animation bounces out of the screen.
What i want is a small bounce at the end - and t should be the same magnitude all the time.
How do I do this?
What am I doing wrong?
Thanks.
OM