我有一個mxml類,我放置一個列表和幾個按鈕。FLEX:如何從AS3外部類文件引用MXML類?
我想兩件事情:
- 從一類是外部文件訪問列表。
- 要添加我的as3類作爲孩子(視覺元素),因爲我需要獲得「舞臺」(全局屬性)。
我不想通過<![CDATA[]]>
將太多的代碼嵌入到mxml中。
因此,例如MXML的
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="800" minHeight="600" width="800" visible="true">
<fx:Style source="Main.css"/>
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<fx:Script>
<![CDATA[
private var menuController:CMenuController= new CMenuController();
]]>
</fx:Script>
<s:List x="598.35" y="100.55" width="178" height="324" id="ListBox">
<s:layout>
<s:VerticalLayout/>
</s:layout>
</s:List>
</s:Application>
因此,我想從訪問列表框 CMenuController,因爲我是在CDATA打字。此外,我需要能夠在CMenuController中添加Sprite和Shapes槽addChild()方法。