I have defined the following stateGroup and transition, but the transition
doesn't fire when the "toState" is to a stateGroup. It does work if its
directly to the state name. Is this normal?

<s:states>
<s:State name="searching_keywords" stateGroups="searching" />
 <s:State name="loading_nextpage" stateGroups="searching" />
</s:states>

<s:transitions>
 <s:Transition fromState="*" toState="searching">
 <s:Parallel duration="750">
 <s:AnimateColor targets="{[bgFill,bgStroke,labelDisplay]}"
repeatBehavior="reverse" repeatCount="0" easer="{myEaser}" />
 </s:Parallel>
 </s:Transition>
</s:transitions>

Reply via email to