将 Flex 3 迁移到 Flex 4 时出错

发布于 2024-11-29 13:59:22 字数 545 浏览 1 评论 0 原文

我将 Flex 3 项目导入到 Flex 4,并删除了 Flex 4 问题窗口中列出的所有错误和警告。

启动我的应用程序时,我在 Flex 4 中遇到以下错误。

这可能是什么原因造成的?

Error: Compatibility version has already been read.
    at mx.core::FlexVersion$/set compatibilityVersion()[E:\dev\4.x\frameworks\projects\framework\src\mx\core\FlexVersion.as:254]
    at mx.core::FlexVersion$/set compatibilityVersionString()[E:\dev\4.x\frameworks\projects\framework\src\mx\core\FlexVersion.as:301]
    at _Screen1Module_mx_core_FlexModuleFactory()

请专家们帮我解决一下这个问题。

非常感谢

I imported my Flex 3 project to Flex 4 and removed all the errors and warnings listed in Flex 4 problem windows.

I am having the following error in Flex 4 when launching my application.

What could be the cause of this?

Error: Compatibility version has already been read.
    at mx.core::FlexVersion$/set compatibilityVersion()[E:\dev\4.x\frameworks\projects\framework\src\mx\core\FlexVersion.as:254]
    at mx.core::FlexVersion$/set compatibilityVersionString()[E:\dev\4.x\frameworks\projects\framework\src\mx\core\FlexVersion.as:301]
    at _Screen1Module_mx_core_FlexModuleFactory()

Experts, please help me on this one.

Many thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

此生挚爱伱 2024-12-06 13:59:22

这就是答案。

这个问题实际上是在尝试在 Flex 中加载模块时发生的。所以基本上我包含了命名空间

xmlns:fx="http://ns.adobe.com/mxml/2009" 
xmlns:s="library://ns.adobe.com/flex/spark" 
xmlns:mx="library://ns.adobe.com/flex/mx"

,并且还用相应的 。 >

这解决了问题。

Here is the answer.

The problem was actually occuring when trying to load modules in flex. So basically I included the namespaces

xmlns:fx="http://ns.adobe.com/mxml/2009" 
xmlns:s="library://ns.adobe.com/flex/spark" 
xmlns:mx="library://ns.adobe.com/flex/mx"

and also replaced <mx:Component>, <mx:Style> by their corresponding <fx:....>

And this solved the issue.

霊感 2024-12-06 13:59:22

有人遇到同样的问题,发现他的 FLEX_HOME 环境变量仍然指向 flex 3 sdk。

Someone having the same problem found out his FLEX_HOME environment Variable was still pointing to the flex 3 sdk.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文