我有一个链接到其他项目的 Flex 项目。其中一些附加项目具有同名的 mxml 视图(即,主项目正在引用其他两个项目,它们都具有“Main.mxml”)。我希望能够在我的项目中添加这两个“Main.mxml”视图作为子视图,但是当我创建一个新视图时,我只能看到一个“Main.mxml”。即使它们具有相同的名称(使用 Flex 4.6),我在 Actionscript 中是否可以访问这些视图并添加它们?
谢谢。
我有一个链接到其他项目的 Flex 项目。其中一些附加项目具有同名的 mxml 视图(即,主项目正在引用其他两个项目,它们都具有“Main.mxml”)。我希望能够在我的项目中添加这两个“Main.mxml”视图作为子视图,但是当我创建一个新视图时,我只能看到一个“Main.mxml”。即使它们具有相同的名称(使用 Flex 4.6),我在 Actionscript 中是否可以访问这些视图并添加它们?
谢谢。
If your two Main.mxml files have the same package name, then you will not be able to use them both in the same project.
If they have different package names; you can use them both but may have to fully qualify the package names whenever creating a class.
How are your projects linked? Are the 'linked' projects library projects?