ActionScript 3 - 安装库

发布于 2024-08-21 23:23:17 字数 192 浏览 2 评论 0原文

我想知道如何将库包安装到 Flash 项目中。 我正在使用 Adob​​e Flash CS4,我尝试包含的库位于 AS3 中。

该库位于 http://code.google.com/p/as3ansi/

I would like to know how can I install a library packages to a Flash project.
I am using Adobe Flash CS4 and the library I'm trying to include is in AS3.

The library can be found on http://code.google.com/p/as3ansi/

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

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

发布评论

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

评论(1

坐在坟头思考人生 2024-08-28 23:23:17

从您提供的链接中我看不到库文件在哪里;看起来更像是一个现成的 SWF 或其他东西。不过,一般来说,要“安装”库(安装是一种误导性的思考方式),您可以输入以下行:

import folder.folder.*;

..并将包含库文件的文件夹放入项目目录中(当然还要更改“文件夹”) ' 在上面的代码中更改为无论文件夹名称是什么)。例如,如果代码位于名为 math > 的文件夹内几何,你会这样做:

import math.geometry.*;

一旦完成,你将能够访问新库附带的所有类和函数。希望一切有帮助。

I can't see from the link you've given where the library files are; it seems more like that thing is a ready-built SWF or something. In general though, to 'install' a library (install is a misleading way to think about it), you put the line:

import folder.folder.*;

..and you put the folders which contain the library files into your project directory (and of course change 'folder' in the above code to whatever the folder names are). For example, if the code is located inside a folder called math > geometry, you'd do:

import math.geometry.*;

Once done, you'll be able to access all the classes and functions that come with your new library. Hope that all helps.

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