Attempting to tween a symbol called ContentTitle.
When testing swf, the first animation ignores the Easing command.
But all following animations work fine.
Here’s the crazy code:[INDENT]
//checking symbol position
if (ContentTitle._y == 210) {}
else {
//begin tween
import mx.transitions.Tween;
import mx.transitions.easing.*;
var yPositionT:Tween = new Tween(ContentTitle, "_y", Strong.easeOut, 240, 210, 1, true);
}
[/INDENT]Thanks for your help!
H8ids