使用mxmlc编译器编译actionscript
如何使用 mxmlc 命令行编译器编译主类位于包内的 ActionScript 代码?考虑以下内容 -
com.nuaavee::MainClass
com.nuaavee.utility::SomeUtility
MainClass
导入 SomeUtility
类。
有没有办法编译这些类,将 MainClass
作为主类来生成 swf?
How would you compile actionscript code whose main class is inside a package using mxmlc command line compiler? Consider the following -
com.nuaavee::MainClass
com.nuaavee.utility::SomeUtility
MainClass
imports SomeUtility
class.
Is there a way to compile these classes keeping MainClass
as the main class to generate a swf?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个经过测试可以工作的解决方案 -
Here is a solution that has been tested to work -
如果只是一个Utility类,只要引用它就应该在MainClass.swf内部编译。即导入 SomeUtility;
如果 SomeUtility 实际上是另一个 swf,您可以将其编译为模块以加载到 MainClass 中或从 MainClass 中加载出来,但这会更复杂。
If it's just a Utility class, it should be compiled inside the MainClass.swf as long as it's referenced. i.e. import SomeUtility;
If SomeUtility is actually another swf, you can compile it as a module to load in and out of your MainClass, but that's more complex.