1

我正在尝试链接 as3corelib 库以按照本教程使用其 JSON 功能。但是我在编译它时遇到了麻烦。我的命令看起来像:

mxmlc --strict=true -library-path+=as3corelib.swc --file-specs myapp.mxml

但我收到此错误:

_divided_mx_managers_SystemManager.as(13):col:14错误:命名空间mx.managers中的接口方法getVisibleApplicationRect:ISystemManager未实现
_divided_mx_managers_SystemManager 类。

公共类_divided_mx_managers_SystemManager

问题是什么?

更新:这是因为我使用的是 Flex 3 吗?该教程似乎适用于 Flex 2。如果是这样,我需要为 Flex 3 做什么?

4

4 回答 4

1

I found an older version of the library bundled with some tutorial which worked. Submitted a bug report to as3corelib, of course I am not entirely sure how valid the bug is.

于 2008-11-13T23:34:44.850 回答
1

如果您使用的是 Flex Builder 3,您实际上可以只获取 swc 文件并将其放在 libs 目录中。这将自动将其添加到您的类路径中,您应该可以从那时起使用它。您可能需要随后对项目进行清理以确保它接受它。

于 2008-11-14T20:30:26.237 回答
1

我在 Flex builder 4 中遇到了类似的问题。我必须将 as3corelib 源代码放入我的源代码中才能正常工作。

于 2011-02-14T05:18:10.210 回答
0

你在使用 flex Gubmo sdk 吗?看起来它抱怨的方法是在 Gumbo 的接口中。如果是这样,那么 as3corelib 可能无法使用它。

于 2008-11-13T22:31:23.420 回答