“AIR 调试启动器”应用程序在 osx 中未启用拖放功能
我正在做一个需要拖放功能的 AIR 应用程序。 为了最大限度地优化工作流程,我希望能够将文件拖到“AIR Debug Launcher”中并对调度 NativeDragEvents 做出反应。但在 OSX 中这不起作用?例如:将文件拖到其上时,Dock 中的图标不会做出反应(没有焦点),就像 Photoshop 那样。 还有其他人遇到过这种情况吗? 我已经尝试过 AIR 2.7 ADL 和 AIR Beta (3.0)。 我使用的是2.7 SDK。 使用 FDT。
NativeDragManager.isSupported 为 true。 编译的 AIR 应用程序可以很好地处理这些事件。
提前致谢。
I am doing an AIR app that needs drag and drop functionalities.
And to optimize the workflow the most- I would like to have it possible to drag files into the "AIR Debug Launcher" and react to the dispatching NativeDragEvents. But in OSX this does not work? ex.: the icon in the dock does not react when dragging a file over it (no focus), like photoshop for example does.
Is anybody else experiencing this?
I have tried both the AIR 2.7 ADL and AIR Beta (3.0).
I am using the 2.7 SDK.
Using FDT.
NativeDragManager.isSupported is true.
Compiled AIR app works fine with the events.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须在应用程序描述符文件中声明文件类型关联。
因此,如果您的 AIR 应用程序想要处理 Photoshop 文件 (.psd),则必须将其包含在您的应用程序描述符文件中:
更多信息请参见:AIR 应用程序描述符元素
you must declare the file type associations in the application descriptor file.
so if your AIR application wanted to handle Photoshop files (.psd), you must include this in your application descriptor file:
more here: AIR application descriptor elements