使用 Flex SDK 在命令行中开发 Flash 有哪些限制?
前几天,我开始用文本编辑器和免费的Flex SDK开发一个flash。
但我发现Flex SDK不支持Alert或Scrollbar。Flex SDK
和 Flash Professional 或 Builder
之间有什么区别?
使用 Flex SDK 在命令行中开发 Flash 是否还有其他限制?
A few days ago, I began to develop a flash with text editor and Flex SDK which is free.
But I found Flex SDK doesn't support Alert or Scrollbar.
What are the differences between Flex SDK
and Flash Professional or Builder
?
Are there any other limitations of developing flash in command line with Flex SDK?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Flash Builder 执行的所有操作,都可以从命令行使用 Flex SDK 执行。由于Flash Builder没有自己的编译器,而是使用Flex SDK。因此,如果项目中的某些组件不可用,则问题可能出在错误的配置(我的意思是命令行参数)中。
我建议您不要直接使用
mxmlc
,而是利用 Apache Maven 与 Flex Mojos 或 Apache Ant。另外,如果您使用的是 Windows,则可以使用免费的 FlashDevelop。
Flash Professional 怎么样?它有一些动画功能等,可供设计师、动画师等使用。它根本不使用 Flex SDK。
All what you can do with Flash Builder, you can perform with Flex SDK from the command line. Because of Flash Builder hasn't any own compiler but uses Flex SDK. So in case of some components in your project are unavailable the problem can be in wron configuration (I mean command line parameters).
I can recommend you not to use
mxmlc
directly but take advantage of Apache Maven with Flex Mojos or Apache Ant.Also if you're on Windows you can use FlashDevelop which is free.
What about Flash Professional it has some animation features etc which can be used by designers, animators etc. It doesn't use Flex SDK at all.
嗯...这很奇怪,因为 Alert 和 ScrollBar 应该是免费 Flex SDK 的一部分。通常,缺少的只是图表 UI 组件(饼图、条形图等)。也许您在编译代码时忘记链接到某个库?
Flash Professional 和 Flash Builder 都使用 Flex SDK。第一个主要针对设计师,而第二个更多针对程序员和用户界面的创建。基本上,如果您可以使用文本编辑器进行编码,则不需要其中任何一个。
Hmm... that's strange because Alert and ScrollBar should be part of the free Flex SDK. Normally, all that's missing are the chart UI components (pie chart, bar chart, etc.). Maybe you forgot to link to some library when you compiled your code?
Flash Professional and Flash Builder both use the Flex SDK. The first one is mainly for designers, while the second one is more for programmers and for the creation of user interfaces. Basically, if you can code with a text editor, you don't need either of those.