如何为 Finder 设置 AppleScript 授权?
How to set AppleScript Entitlements for Finder?
我需要在启用了沙箱的应用程序中使用 AppleScript。只需使用“告诉 Finder 到 bla-bla-bla”之类的东西。很简单。我知道我需要在 Entitlements 中为 finder 做这样的记录:
<key>com.apple.security.scripting-targets</key>
<dict>
<key>com.apple.mail</key>
<array>
<string>com.apple.mail.compose</string>
</array>
</dict>
有人知道 Xcode 中 Finder 的正确权利记录吗?我尝试使用下一个选项:
<key>com.apple.security.scripting-targets</key>
<dict>
<key>com.apple.finder</key>
<string>com.apple.finder</string>
</dict>
但是不行。
Finder 不支持scripting targets
所以你需要使用以前的临时例外。
<key>com.apple.security.temporary-exception.apple-events</key>
<array>
<string>com.apple.finder</string>
</array>
我需要在启用了沙箱的应用程序中使用 AppleScript。只需使用“告诉 Finder 到 bla-bla-bla”之类的东西。很简单。我知道我需要在 Entitlements 中为 finder 做这样的记录:
<key>com.apple.security.scripting-targets</key>
<dict>
<key>com.apple.mail</key>
<array>
<string>com.apple.mail.compose</string>
</array>
</dict>
有人知道 Xcode 中 Finder 的正确权利记录吗?我尝试使用下一个选项:
<key>com.apple.security.scripting-targets</key>
<dict>
<key>com.apple.finder</key>
<string>com.apple.finder</string>
</dict>
但是不行。
Finder 不支持scripting targets
所以你需要使用以前的临时例外。
<key>com.apple.security.temporary-exception.apple-events</key>
<array>
<string>com.apple.finder</string>
</array>