Showing posts with label flash AS3. Show all posts
Showing posts with label flash AS3. Show all posts

Tween doesn't finish sometimes

Flash Tips and Tricks

If you have problem with not finishing tween in flash AS3, this is how to fix it:
var tweensArray :Array = [];
var myTween:Tween = new Tween(movieClip, , "alpha", None.easeOut, 0, 1, 2, true);
tweensArray.push(myTween);