AIR 中没有 contextMenu.customItems?
有一些代码已经使用了相当长一段时间 - 始终使用 mxmlc 进行编译。只是用 amxmlc 编译它,它给了我关于“customItems”存在的错误 - 在整个 1500 多行 AS3/flex 程序中没有其他任何东西。我拿出了 customItems 参考,它用 amxmlc 编译得很好。
文档中没有表明该功能“customItems”是活动的和当前的。 amxmlc 实际上所做的只是将 AIR 的命令行参数添加到标准 mxmlc。
Have some code that's been in use for quite some time - always compile with mxmlc. Just compiled it with amxmlc and it gave me errors over the presence of "customItems" - nothing else at all in the entire 1500+ line AS3/flex program. I took out the customItems reference and it compiles with amxmlc just fine.
Nothing about that feature 'customItems' is indicated to be anything other than active and current in the documentation. All amxmlc actually does is add a command line argument for AIR to the standard mxmlc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
深入研究后发现,在 AIR 中,他们对 contextMenu 使用了一个完全不同的类,称为 NativeMenu,具有不同的属性(没有解释原因)。
Dug a little deeper and found out that in AIR, they use a completely different class for contextMenu called NativeMenu with different properties (for no explained reason).