“AIR 调试启动器”应用程序在 osx 中未启用拖放功能

发布于 2024-11-25 06:43:41 字数 327 浏览 0 评论 0原文

我正在做一个需要拖放功能的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

违心° 2024-12-02 06:43:41

您必须在应用程序描述符文件中声明文件类型关联。

因此,如果您的 AIR 应用程序想要处理 Photoshop 文件 (.psd),则必须将其包含在您的应用程序描述符文件中:

<fileTypes> 
    <fileType> 
        <extension>psd</extension> 
    </fileType> 
</fileTypes>

更多信息请参见: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:

<fileTypes> 
    <fileType> 
        <extension>psd</extension> 
    </fileType> 
</fileTypes>

more here: AIR application descriptor elements

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文