So I was just watching some TV this afternoon and saw a text effect I wanted to recreate. It only took about 20 minutes using TweenMax. Keep reading to get source files and code.
I wanted to just post this quick. Sorry no video. There isn’t anything new to discuss here. Just wanted to show you another way to use what you already know. I only saw the effect once so it probably isn’t entirely accurate, but the 3d flip is what I wanted to monkey with.
AS3 Code
import com.greensock.*;
import com.greensock.easing.*;
var movies_arr:Array = new Array(
movies_mc.gladiator_mc,
movies_mc.ratRace_mc,
movies_mc.airplane_mc,
movies_mc.napoleon_mc,
movies_mc.peeWee_mc
);
TweenMax.to(thisMonth_mc, 10, {x:-600});
TweenMax.from(thisMonth_mc, 1, {alpha:0});
TweenMax.allFrom(movies_arr, .5, {rotationX:-120, alpha:0, delay:0}, .5);
TweenMax.allTo(movies_arr, 2, {rotationY:220, alpha:0, delay:2.5}, .5);
TweenMax.from(movies_mc, 10, {alpha:0, x:400, y:80, scaleX:.2, scaleY:.2, ease:Cubic.easeOut, onComplete:play});
stop();
Download CS4 Fla
snorkl_encore_effect
3D effects are not available in CS3.






