从哪里可以下载相当于 Flash Player 11 的 Flash Builder SDK?
我希望在 ActionScript 中使用 Stage3D 和 Context3D。为此,我需要下载 Flash Player 11 的测试版。但是,我找不到带有 mxmlc 可执行文件的等效 Flash Builder SDK,该可执行文件可以将 ActionScript 编译为支持 Flash 11 的 Shockwave Flash 文件。关于我可以从哪里下载它的任何线索?
I wish to use Stage3D and Context3D in ActionScript. For that I need to download the beta version of Flash Player 11. However, I can't find the equivalent Flash Builder SDK with the mxmlc executable that can compile ActionScript into Flash 11 capable Shockwave Flash files. Any clue as to where I may download it from?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要另一个 SDK,您需要修改 flex-config.xml 文件并向 mxmlc 命令添加其他参数。查看 sdks\4.5.1\frameworks\flex-config.xml 并将目标播放器节点的 swf 版本更改为 13,并将节点路径元素更改为正确的playerglobal.swc(可在 labs.adobe.com 上获取)。
编译器参数是“-target-player=11.0.0”(如果您的 flex-config.xml 反映了该版本)。
You do not need another SDK you need to modify the flex-config.xml file and add additional parameter to your mxmlc command. Look in sdks\4.5.1\frameworks\flex-config.xml and change the target-player node the swf-version to 13 and the node path-element to the correct playerglobal.swc (available on labs.adobe.com).
The compiler parameter is "-target-player=11.0.0" (if your flex-config.xml reflect that version).