适用于 Android 应用程序的 Flash Catalyst 和 Flash Builder 之间的往返
有没有办法在 Flash Catalyst 和 Flash Builder 之间“往返”Android 项目?我正在使用最新的测试版本(墨西哥卷饼和帕尼尼)。
如果没有,下个月发布的 CS5.5 是否会提供此功能?
Is there any way to "round trip" Android projects between Flash Catalyst and Flash Builder? I'm using the latest beta versions (Burrito and Panini).
If not, will this be available with CS5.5 when it's released next month?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 Catalyst CS 5.5 和 Flash Builder 4.5(最新版本)之间往返。但是,该项目必须是“Flash Catalyst 兼容项目”,根据定义,该项目是 Flex 项目,而不是 AIR 或 Mobile 项目。我设置了 3 个项目:
一个“Skin”项目,与 Flash Catalyst 兼容并包含 UI 代码。 Main.mxml 中没有任何内容;应用程序的大部分内容包含在自定义组件(和子组件)中。
一个“核心”项目,它从 Skin 项目导入源代码并对其运行单元测试。这也是我可以从其他源库导入的地方。
You can round-trip between Catalyst CS 5.5 and Flash Builder 4.5 (most recent versions). However, the project has to be a "Flash Catalyst Compatible Project", which by definition is a Flex project, not an AIR or Mobile project. I set up 3 projects:
A "Skin" project, Flash Catalyst Compatible and contains the UI code. There's nothing in Main.mxml; the bulk of the app is contained in a Custom Component (and child components).
A "Core" project, which imports the source from the Skin project and runs unit tests against it. This is also where I can import from other source libraries.