I have created a series of states
with a simple move transition between them...
All worked fine until I added a tilelist as child
of one of the states. Now the move transition
doesn't start until the tilelist is initialized...
Tried also to separate the addchildaction of the tilelist
using a sequence and trying to trigger the addchild action
before or after the move...
<mx:Sequence>
<mx:AddChildAction
target="{the_tileList}" />
<mx:Move duration="1000" />
<!--<mx:AddChildAction
target="{the_tileList}"/>-->
</mx:Sequence>
BUT clearly the only thing that
it's moved backward or forward in time it's the actual
action of adding the child, not the initialization of it...
So... the freezing still occurs...
Any idea how to avoid the freezing problem?
Thanks
Gio