AS3 Transition Manager problem

Posted by Mirko on Stack Overflow See other posts from Stack Overflow or by Mirko
Published on 2010-05-07T11:33:02Z Indexed on 2010/05/07 16:48 UTC
Read the original article Hit count: 355

Filed under:
|

I am using the TransitionManager class to pixel dissolve an image in an image gallery XML driven.

It always stops half way through the animation...I hate Adobe Tween engines, I always used TweenMax without (almost) any problem but I would like to have the pixel dissolve effect.

 var myTM:TransitionManager = new TransitionManager(container_mc);
 myTM.addEventListener("allTransitionsOutDone",swapContent);
 myTM.startTransition({
 type:PixelDissolve, direction:Transition.OUT,  duration:1,easing:None.easeOut,xSections:200, ySections:200
 });

Any suggestion?

© Stack Overflow or respective owner

Related posts about actionscript-3

Related posts about adobe