mx.collections 丢失? Flex4 (Flash Builder 4) 中的 ArrayCollection()

发布于 2024-09-17 18:22:34 字数 463 浏览 6 评论 0原文

我有一些使用 ArrayCollection 的代码,它导入:

import mx.collections.ArrayCollection;

then:

static protected var myAC:ArrayCollection = new ArrayCollection();

看起来很简单,但在我的项目中,未找到/定义导入(以及 ArrayCollection)!

我正在使用 Flash Builder 4 (Flex 4) - 它是一个 ActionScript 项目,项目属性设置为 Flex SDK 4.0。一切都应该是默认设置。

当我输入“导入 mx”时。然后按 control-space(自动完成),我会看到一个选项列表,例如 core、geom 和其他几个选项,但没有“集合”。

我一定错过了什么?

I have some code that uses an ArrayCollection, it imports:

import mx.collections.ArrayCollection;

then:

static protected var myAC:ArrayCollection = new ArrayCollection();

Seems straightforward, but in my project the import (and thus ArrayCollection) are not found/defined!

I am using Flash Builder 4 (Flex 4) - it's an ActionScript project, and project properties is set to Flex SDK 4.0. Everything should be default settings.

When I type "import mx." and press control-space (autocomplete), I see a list of choices such as core, geom and several others, but no 'collections'.

I must be missing something?

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

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

发布评论

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

评论(2

倾城花音 2024-09-24 18:22:34

默认情况下,“ActionScript 项目”不包含包含 mx.collections 等 Flex 包的 Framework.swc。如果您确实想使用 ArrayCollection,则必须将 SWC 及其相应的资源包 SWC 添加到项目库路径中。他们位于:

${FLEX_SDK_HOME}/frameworks/libs/framework.swc
${FLEX_SDK_HOME}/frameworks/locale/${locale}/framework_rb.swc

By default, an "ActionScript Project" does not include the framework.swc which contains the flex packages such as mx.collections. If you really want to use ArrayCollection, you'll have add the swc and its corresponding resource bundle swc to your project library path. They are located at:

${FLEX_SDK_HOME}/frameworks/libs/framework.swc
${FLEX_SDK_HOME}/frameworks/locale/${locale}/framework_rb.swc
感情洁癖 2024-09-24 18:22:34
  1. 将您的项目导出为 zip
  2. 更新到 FlashBuilder 4.1
  3. 从 zip 导入您的项目
  4. 忘记您的错误)
  1. Export your project to zip
  2. Update to FlashBuilder 4.1
  3. Import your project from zip
  4. Forget about your error)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文