好的,有人可以告诉我在 Flex 4 中在 mxml 中执行状态的真实语法吗???
我已经看到了以下两个(并且都实现了)并且不知道哪种方式是“正确的”或首选的。
在里面<fx:Declarations>
<fx:Declarations>
...
<s:State name="state1" />
<s:State name="state2" />
<s:State name="state3" />
</fx:Declarations>
<s:Button id="button1" ... />
...
<more components>
或者
组件中的“最顶层”级别
<s:states>
<s:State name="state1" />
<s:State name="state2" />
<s:State name="state3" />
</s:states>
<s:Button id="button1" ... />
...
<more components>