Created
September 21, 2011 11:59
-
-
Save neilmanuell/1231868 to your computer and use it in GitHub Desktop.
Possible syntax for pushing pre-declared instances onto an array property
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<fsm:FSMDeclaration | |
xmlns:fx="http://ns.adobe.com/mxml/2009" | |
xmlns:fsm="fsm.*" | |
initial="{s1}"> | |
<fsm:states> | |
<fsm:State id="s1" transitions="{[t1,t2]}"> | |
<fsm:State id="s2"/> | |
<fsm:State id="s3"/> | |
</fsm:states> | |
<fsm:transitions> | |
<fsm:Transition id="t1" target="{s2}"/> | |
<fsm:Transition id="t2" target="{s3}"/> | |
</fsm:transitions> | |
</fsm:FSMDeclaration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment