Hi, I would like start multiple tweens at the same time with different delays. In the past I used "append" or "insert" with something like:
timeline.appendMultiple([
TweenLite.from(bar1, 1, {scaleY:0, delay 0.1}),
TweenLite.from(bar2, 1, {scaleY:0, delay:0.3}),
TweenLite.from(bar3, 1, {scaleY:0, delay 0.7}),
], 0, TweenAlign.NORMAL, 0);
or:
timeline.insert( TweenLite.from(bar1, 1, {scaleY:0}), 0.1 );
timeline.insert( TweenLite.from(bar2, 1, {scaleY:0}), 0.3 );
timeline.insert( TweenLite.from(bar3, 1, {scaleY:0}), 0.7 );
But neither of these are documented so I guess there is a "proper" way to do it. How would I achieve the above using the preferred way? Thanks, Adam