如何创建 SWC 文件
我想要的只是获取我的 AS3 源代码文件并将它们编译成 SWC 文件。
经过检查,当我使用 Flash IDE 或 Flex SDK 实用程序“compc”时,我生成的 SWC 文件最终会带有某种时间线或恶意内容,这很烦人。
All I want is to take my AS3 source code files and compile them into a SWC file.
Upon inspection, the SWC files I generate end up with some kind of timeline or spite in them when I use the Flash IDE or that Flex SDK utility "compc", and it's irritating.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Flash 是基于时间线的;所以 Flash 中的所有内容都使用时间线。不过,他们在 Flex 中将其隐藏得很好,因此在幕后并不明显。
要在 Flex 中创建 SWC 文件,您需要使用命令行编译器,尽管听起来您已经这样做了,所以我不清楚您的问题是什么。
Flash is timeline based; so everything in Flash uses a timeline. They hide it very well in Flex, though, so it's not obvious under the hood.
To create a SWC file in Flex, you need to use the command line compiler, although it sounds like you've already done that, so I'm unclear what your issue is.
事实上,您可以在Flash builder中构建一个“flex库项目”。将你的AS3源代码文件放入该项目中,它会自动生成一个swc文件,其中包含你的AS3类;
In fact, you can build a "flex library project" in Flash builder. place your AS3 source code files in this project, it would automatic generate a swc file in which your AS3 Class;