我正在尝试开发响应 final cut pro 自定义共享的 osx 应用程序。
两周来我一直在寻找参考资料。我做了以下事情。
<key>NSAppleScriptEnabled</key>
<true/>
<key>OSAScriptingDefinition</key>
<string>pairs.sdef</string>
<key>NSAppleEventsUsageDescription</key>
<string>hello</string>
<key>com.apple.proapps.MediaAssetProtocol</key>
<dict>
</dict>
- 实现了所有需要并通过编辑器的测试苹果脚本代码
tell application "My Application"
make new asset with properties ¬
{name:"MyNewAsset", |metadata|:{|com.apple.proapps.share.episodeID|:"MyNewEpisode"}, dataoptions:{|availableMetadataSets|:{"Camera View", "General View"}}}
set newAsset to result
set theLocation to location info of newAsset
end tell
Result :
{folder:file "Macintosh HD:Users:handsome:Documents:gemiso"}
然后,我在 final cut pro 中添加了自定义共享目标并指向我的应用程序
我使用 xcode 调试模式执行了我的应用程序。
我单击 Final Cut Pro > 文件 > 共享 > '我的应用程序'
但我的申请没有回应。
我迷路了。请帮我