0
我已經創造了Flex的模塊象下面這樣:Flex模塊擴展時不再需要模塊嗎?
模塊/ ModuleBase.mxml
<?xml version="1.0" encoding="utf-8"?>
<mx:Module xmlns:mx="http://www.adobe.com/2006/mxml">
// components here
</mx:Module>
到目前爲止好 - 當這個文件被保存ModuleBase.swf產生。
現在我延長上方,創建另一個類:
ModuleChild.mxml
<?xml version="1.0" encoding="utf-8"?>
<ModuleBase xmlns="modules.*" xmlns:mx="http://www.adobe.com/2006/mxml">
// more components here
</ModuleBase>
現在,我的預期是對的Flex Builder生成ModuleChild.swf。這並不是真的發生。遊民。
我在這裏做錯了什麼?