Rewinding or resetting Parallel effect in Flex 3
Posted
by
errata
on Stack Overflow
See other posts from Stack Overflow
or by errata
Published on 2012-11-05T22:24:12Z
Indexed on
2012/11/05
23:00 UTC
Read the original article
Hit count: 220
How can I 'rewind' or force the parallel effect to play from the very beginning once it already started to play?
Code sample:
<mx:Parallel id="parallelEffect" repeatCount="0">
<mx:Fade alphaTo="1" target="{someTarget}" startDelay="2000" />
<mx:Fade alphaTo="1" target="{someOtherTarget}" startDelay="4000" />
<mx:Fade alphaTo="1" target="{thirdTarget}" startDelay="6000" />
<mx:Fade alphaTo="1" target="{fourthTarget}" startDelay="8000" />
<mx:Fade alphaTo="1" target="{fifthTarget}" startDelay="10000" />
</mx:Parallel>
© Stack Overflow or respective owner