A lot of times the flash tween class does not work 100% as expected especially when it is used in a loop. Anyone knows solution to get out of this?
it all depends on what issues you are having
but chances are most of your tween issues will be resolved if you declare the var myTween:Tween outside of the a function
in AS3 there is a property that lets you test if it is still tweening
so a simple
if( myTween.isPlaying )
will also help you
add your tweens in arrays so they won’t be deleted by the flash player garbage collector… or use tweener.
This is the best solution. Declaring them globally works, but unless you litter your code with a bunch of globally referenced tween instances that you may or may not use you can’t really use this method in a loops.
An array is the easiest way to get all the benefits of globally declared vars for objects that are created dynamically.
