On my mx:Image component I have a creationCompleteEffect="glowIn"
<mx:Glow id="glowIn" duration="700"
alphaFrom="0" alphaTo="1"
blurXFrom="0.0" blurXTo="30.0"
blurYFrom="0.0" blurYTo="30.0" strength="2"
color="0xCCFFCC" effectEnd="glowOut"/>
<mx:Glow id="glowOut" duration="800"
alphaFrom="1" alphaTo="0"
blurXFrom="30.0" blurXTo="0.0"
blurYFrom="30.0" blurYTo="0.0" strength="2"
color="0xCCFFCC" effectEnd="glowIn"/>
The problem is that the effect does accure onComplete Event, but "effectEnd" in the self effect does not happen. So Instead of cycling through glowEffects it simply stays on the first one (glowIn). Any solution?
Thank, Yan