Fl.TransitionManager availability

Hi everybody!
Anyone known if there’s something similar can be used with actuate, give chance to have same effects? I’m really interested to WIPE effect you can find in this tutoria of as3 transition manager.

http://www.republicofcode.com/tutorials/flash/as3transitionmanager/

Thanks, David.

For the wipe effect you can use mask.

var image:Bitmap = new Bitmap(Assets.getBitmapData("assets/bg.png"));
addChild(image);
var imageMask:Bitmap = new Bitmap(image.bitmapData);
addChild(imageMask);
image.mask = imageMask;
imageMask.x = -image.width;
Actuate.tween(imageMask, 2, { x:image.x } );

Thanks a lot for your suggestion, using it, some tricks and some work I solve many of my issues.

Really thanks.
David.