将 AIR Native Extension 与 FLA 项目集成
我正在尝试使用 IOS 应用内本机扩展,该扩展位于 (http://code.google.com/p/in-app-purchase-air-ios/),并且我已将 SWC 与我的flash 项目...
我遇到的问题是所有使用代码都讨论与 Flex 项目集成而不是 FLA - 有谁知道是否可以将此扩展移植到 flash 项目中使用?
问候,
戴夫。
I am trying to use the IOS in-app native extension, which is found at (http://code.google.com/p/in-app-purchase-air-ios/), and I have linked the SWC with my flash project...
The problem I am having is that all of the usage code talks about integrating with a Flex project rather then an FLA - does anyone know if it is possible to port this extension for use with a flash project?
Regards,
Dave.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不需要将 .ane 重命名为 SWC:如果您添加指向包含 .ane 文件的目录的链接,ADT 将找到 .ane。您可以将 .swc 添加到您的项目中以完成代码(如果您有)。检查我的命令的最后一部分(我使用 Flash Professional):
我为 Flash Professional 制作了一个视频,结合了覆盖 AIR3 SDK 的过程、使用陀螺仪本机扩展创建项目并使用 ADT 编译、使用 Xcode 在我的 iPad 上安装应用程序。希望这对某人有帮助!
http://www.sworl.be/air-native-extensions-in-闪光/
You don't need to rename the .ane to a SWC: ADT will find the .ane if you add a link to a directory containing .ane files. You can add the .swc to your project for code completion if you have one. Check the last part of my command (I used Flash Professional):
I made a video for Flash Professional combining the process of overlaying the AIR3 SDK, creating a project using gyroscope native extension and compiling with ADT, installing the app on my iPad using Xcode. Hope this helps somebody!
http://www.sworl.be/air-native-extensions-in-flash/
是的,我有一个本机扩展 (ANE) 可以使用 Flash IDE 进行工作。您需要将 .ane 文件重命名为 .swc 文件。
此视频应该会有所帮助:http://www.youtube.com/watch?v=Axg6E001a7I
编辑:
这假设您已将 Air 3.0 SDK 覆盖在 Flash 上,并安装了 ADT 命令行工具。截至目前,您只能将使用本机扩展的应用程序与 ADT 打包。
有关覆盖 Air 3.0 SDK 的更多信息:http://kb2.adobe.com/cps/ 908/cpsid_90810.html
Yes, I got a native extension (ANE) to work using the Flash IDE. You need to rename the .ane file to a .swc file.
This video should help: http://www.youtube.com/watch?v=Axg6E001a7I
EDIT:
This assumes that you have overlayed the Air 3.0 SDK on Flash, and installed the ADT command-line tool. As of now, you can only package apps that use native extensions with ADT.
More info on overlaying the Air 3.0 SDK: http://kb2.adobe.com/cps/908/cpsid_90810.html