我可以在 Flex 中创建 SWF 而不使用 Flash Builder 吗?
我对 flash/flex 世界非常陌生。我想知道是否可以在 Flex 中创建 SWF,而不使用 Flash Builder?
I am very new to the flash/flex world. I am wondering if I can create a SWF in Flex WITHOUT using Flash Builder ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
实际上
mxmlc.exe
编译您的应用程序(关于)。您可以直接使用它并传递适当的参数进行编译。您还可以使用 flex ant 任务 进行编译。
当然你也可以使用其他IDE进行编译:
但总而言之,所有这个工具的实际使用mxmlc 编译器(或其变体)。
Actually
mxmlc.exe
compiles your application (about). You can compile directly using it and passing appropriate parameters.Also you can compile using flex ant task.
And of course you can use other IDE for compiling:
But all in all, all of this tools actually use mxmlc compiler (or its variations).
是的 !您可以使用任何编辑器编写 ActionScript 代码,并且可以使用
mxmlc
命令行工具。有关mxmlc 的更多信息,请参阅此处
。您还可以使用Eclipse IDE,将其指向Flex SDK并进行Flex开发。Adobe Flash Builder 并不是生成 .SWF 所必需的。
Yes ! You can write ActionScript code using any editor and you can use the
mxmlc
command line tool. Refer here for more onmxmlc
. You can also use Eclipse IDE, point it to Flex SDK and do Flex development.Adobe Flash Builder is not a must to generate .SWFs.
一些基础知识:
Flash Builder 是一种 IDE,您可以在 Flex 框架的帮助下使用 ActionScript(语言)开发应用程序。当您发布应用程序时,编译器将创建一个将在 Flash Player(对于浏览器应用程序)上运行的 swf 文件和一个对于桌面应用程序的安装程序文件。
A few basics:
Flash Builder is the IDE using which you'll develop applications in ActionScript (the language), taking help of the Flex framework. When you publish the application, the compiler will create an swf file which will run on Flash Player (for browser apps) and an installer file for desktop apps.
您确实可以通过
mxmlc
Ant 任务< /a>;FlashBuilder 使用 mxmlc 来编译 Flex 应用程序。其他 IDE 也可以构建 Flex 应用程序,例如 IntelliJ IDEA。
You can indeed by using:
mxmlc
on the command line;mxmlc
Ant task;FlashBuilder uses mxmlc to compile your Flex application. Other IDEs can also build Flex applications, such as IntelliJ IDEA.