I'm trying to achieve a simple effect on 2 words array using the greensock engine.
It's working but the timing is off. I want them to be coordinate and with an alpha in between the simple way all I want to I just to show one word after the other in repeat and yoyo right now I almost got it it's just not a good timing.
var allnum2:Array = [text1, text2];
Timeline.appendMultiple(
TweenMax.allFrom(allnum2, .7, {
alpha: 0,
repeat: 7,
yoyo: true,
ease:Strong.easeInOut
}, .7)
, 1);