FlashEff + greensock timeline

Posted by user562826 
FlashEff + greensock timeline
May 12, 2012 08:45PM
Hi, how do I can use flasheff with timelineLite? I'm starting now with flasheff and I thought to buy it to integrate with my tweens.
Re: FlashEff + greensock timeline
May 16, 2012 07:20AM
Sorry, but what exactly are you trying to do? FlashEff is a separate component and you cannot insert or include timelineLite in it. You can use however TimelineLite classes, in parallel with FlashEff component, for placing tweens on different objects in your file.
Re: FlashEff + greensock timeline
May 16, 2012 04:16PM
I have an application that has a big timeline (10 min) with various animations at different points. What I would like is to put the effects of FlashEff within that timeline.

In the example below, I would like MC2 had a pattern of FlashEff (as BrightSquares)

var timeline: TimelineMax TimelineMax = new ();
timeline.append (TweenLite.from (MC1, 1, alpha {1}));
timeline.append (TweenLite.from (MC2, 1, {alpha: 1, delay: 2}));
timeline.append (TweenLite.from (MC3, 1, {alpha: 1, delay: 5}));
Re: FlashEff + greensock timeline
May 18, 2012 10:45AM
So, basically you want to apply an alpha effect with TweenLite on a movieclip on which you already applied a FlashEff effect?
Re: FlashEff + greensock timeline
May 18, 2012 02:50PM
No, I want to applie a FlashEff effect in the mc.

var timeline: TimelineMax TimelineMax = new ();
timeline.append (TweenLite.from (MC1, 1, alpha {1}));
timeline.append (TweenLite.from (MC2, 1, {alpha: 1, delay: 2}));
timeline.append (TweenLite.from (MC3, 1, {alpha: 1, delay: 5}));

something like.

var timeline: TimelineMax TimelineMax = new ();
timeline.append (TweenLite.from (MC1, 1, alpha {1}));
timeline.append (TweenLite.from (MC2, 1, {alpha: 1, delay: 2, {FlashEff:BrightSquares}));
timeline.append (TweenLite.from (MC3, 1, {alpha: 1, delay: 5}));
Re: FlashEff + greensock timeline
May 22, 2012 07:28AM
I'm afraid that's not possible. Anyway, why exactly do you want to apply a FlashEff effect with timelineLite?
You can apply directly the effect without any problem.
Re: FlashEff + greensock timeline
May 22, 2012 02:00PM
I intend to use FlashEff with TimelineLite to sequence the animation effect and also allowing the use of the Backward resource.
Sorry, you do not have permission to post/reply in this forum.