Flash Builder 中的 Flash 项目中的 AS 导入

发布于 2024-10-06 15:30:30 字数 242 浏览 5 评论 0原文

所以我试图制作一个 3 层 flash 应用程序,其中 main.as 调用所有影片剪辑并使用 addChild() 调用它们。这些 movieclip 类位于 com.ui 包中,但不知何故我的应用程序无法加载它们,它们仅在我将 movieclip 类移动到默认包(根文件夹)时加载。

我怎样才能导入像这样的电影剪辑 ->导入 com.ui.myMovieClip;

我正在使用 Flash CS5 和 Flash Builder

So I'm trying to make a 3 tier flash application where the main.as calles all the movieclips and addChild()'s them. those movieclip classes are situated in the com.ui package but somehow my app can't load them, they only load is I move my movieclip classes to the default package (the root folder).

How can I import those movieclips like this -> import com.ui.myMovieClip;

I'm using Flash CS5 and Flash Builder

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

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

发布评论

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

评论(1

心凉怎暖 2024-10-13 15:30:30

您需要创建一个具有以下结构的文件夹,而该文件夹包含 com 文件夹,该文件夹包含 ui 文件夹等...

/folder 
   / com
     / ui
       /your classes

在 FlashBuilder 中,将文件夹设置为项目的 SourcePath。在左侧的类树中,您应该在源路径之一中看到 com 文件夹。

ui 文件夹中包含的每个类都将位于一个包中,例如

package com.ui
{
   //etc
}

You need to create a folder with the following structure, whereas , folder contains the com folder that contains the ui folder etc...

/folder 
   / com
     / ui
       /your classes

In FlashBuilder , set folder as a SourcePath for your project. In your classes tree on the left you should see the com folder in one of the source paths.

Each class contained in the ui folder will be in a package such as

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