4

我在 Mac OSX 10.7.3 上使用简单的 AppleScript 时遇到问题。使用以下简单的 AppleScript,我在任何地方都能找到 OSX 引发错误““运行 AppleScript”操作遇到错误”

我打开 Automator,创建一个服务,放入“运行 AppleScript”节点并输入以下代码,我认为这是正确的,因为正如我所说,这是很多人毫无怨言的做法。

苹果脚本:

tell application "Terminal" to activate
    tell application "System Events"
        tell process "Terminal"
            click menu item "New Window" of menu "Shell" of menu bar 1
            tell application "Terminal" to close the front window
        end tell
end tell

编辑:在 Automator 中运行时,我还会收到错误描述:

Run AppleScript failes -1 error
Access for assistive devices is disabled"
4

2 回答 2

4

是否Enable access for assistive devices启用?如果是这样,您是否尝试过重新启用它?

于 2012-03-27T13:31:23.453 回答
3

好吧,我想无论如何我都会回答这个问题(感谢您编辑您的问题以提供更多有用的细节)。

转到“系统偏好设置”中的“通用访问”窗格,在“查看”选项卡的底部,您将看到“启用辅助设备访问”复选框。

启用辅助设备 打开它,我怀疑 Automator 会工作。

于 2012-03-27T13:31:41.513 回答