Skip to content

Instantly share code, notes, and snippets.

@neilmanuell
Created September 21, 2011 11:13
Show Gist options
  • Save neilmanuell/1231821 to your computer and use it in GitHub Desktop.
Save neilmanuell/1231821 to your computer and use it in GitHub Desktop.
Sketch for MXML building problem - this I understand.
<?xml version="1.0"?>
<fsm:FSMDeclaration
xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:fsm="fsm.*"
initial="{s1}">
<fsm:State id="s1"/>
<fsm:State id="s2"/>
</fsm:FSMDeclaration>
package fsm {
[DefaultProperty("values")]
public class FSMDeclaration {
public var initial:IState;
public var values:Array = [];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment