Anyone using Flash's built-in TransitionManager?

I'm losing the transitions if I apply Bitmap filters (through the IDE) to a
movieclip on the stage, which use the following code:

import mx.transitions.*;
import mx.transitions.easing.*;

doTrans( Iris, Transition.OUT, _mc );
doTrans( Wipe, Transition.IN, flv_mc );

function doTrans( type:Function, dir:Number, target:MovieClip ) {
   if ( type == Iris ) {
       TransitionManager.start( target, {type:Iris, direction:dir,
duration:5, easing:Bounce.easeOut, startPoint:5, shape:Iris.CIRCLE} );
   } else if ( type == Wipe ) {
       TransitionManager.start( target, {type:Wipe, direction:dir,
duration:2, easing:None.easeNone, startPoint:1});
   }
}

Anyone use a different package to accomplish the same thing, that is a bit
more reliable?


: : ) Scott
_______________________________________________
[email protected]
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to