我使用这样的代码自动执行一些菜单点击,而不是每次都自己执行:
tell application "System Events" to tell process "myApp"
click something and so on
end tell
现在,为了在 osx lion 沙箱中进行这项工作,我的权利文件如下所示(为了弄清楚这一点做了很多研究):
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.security.app-sandbox</key>
<true/>
<key>com.apple.security.temporary-exception.apple-events</key>
<array>
<string>com.apple.systemevents</string>
<string>com.apple.iphonesimulator</string>
</array>
</dict>
</plist>
现在,正如上帝所愿,苹果拒绝了这个应用程序,因为我正在访问com.apple.systemevents
. 有没有办法解决使用System Events
单击指定应用程序菜单中的指定菜单项的方法?