ファイルがアプリケーション アイコンにドロップされたときにファイルのパスを表示するエア アプリケーションを作成しています。Windows では問題なく動作しますが、Mac ではアプリケーション アイコンにファイルをドロップすることはできません。テストのために、アプリケーション記述子を使用して.txtファイルをアプリケーションに登録しました
<!-- The name that the system displays for the registered file type. Required. -->
<name>myAIREditor.Text</name>
<!-- The extension to register. Required. -->
<extension>txt</extension>
<!-- The description of the file type. Optional. -->
<description>myAIREditor text description file</description>
<!-- The MIME content type. -->
<contentType>text/plain</contentType>
<!-- The icon to display for the file type. Optional. -->
<!-- <icon>
<image16x16></image16x16>
<image32x32></image32x32>
<image48x48></image48x48>
<image128x128></image128x128>
</icon> -->
</fileType>
残念ながら、アプリケーション アイコンにテキスト ファイルをドロップすると、パスが表示されます。では、100 億のファイル タイプすべてに対してこれを行う必要がありますか?
拡張子に関係なく、あらゆる種類のファイルを受け入れるようにアプリに指示する方法はありますか?