Flex模块在扩展时不再是模块?

时间:2010-01-25 17:28:50

标签: flex actionscript-3 actionscript

我在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 。这并没有真正发生。长号。

我在这里做错了什么?

1 个答案:

答案 0 :(得分:0)

经过一段时间的测试后找出了解决方案:

  1. 右键单击您的项目,然后选择属性
  2. 点击左侧菜单中的 Flex模块
  3. 找到您的模块,选择它并修改
  4. 优化SWF尺寸中选择不优化
  5. 快乐:)