Flash Builder 中的 Flash 项目中的 AS 导入
所以我试图制作一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要创建一个具有以下结构的文件夹,而该文件夹包含 com 文件夹,该文件夹包含 ui 文件夹等...
在 FlashBuilder 中,将文件夹设置为项目的 SourcePath。在左侧的类树中,您应该在源路径之一中看到 com 文件夹。
ui 文件夹中包含的每个类都将位于一个包中,例如
You need to create a folder with the following structure, whereas , folder contains the com folder that contains the ui folder etc...
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