Adobe AIR、Flex 4 - 右键单击时上下文菜单不显示
我很确定我的代码没问题,因为当我为 Web 编译时,上下文菜单显示得很好,但当我为 AIR 编译时,什么也没有显示。有什么想法吗?
I'm pretty sure my code is OK as the Context Menu shows nicely when I compile for web, but when I compile for AIR nothing shows up. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我刚刚想通了。在 AIR 中,您必须显式调用 ContextMenu.display()。例如在 DataGrid.rightClick 上。然后使用 event.stageX 和 event.stageY 来定位它。
I just figured it out. In AIR you have to call ContextMenu.display() explicitly. For example on DataGrid.rightClick. Then use event.stageX and event.stageY to position it.