Click menu item on Mac OSX Lion using AppleScript

一个人想着一个人 提交于 2020-01-01 12:14:18

问题


I have a problem using a simple AppleScript on Mac OSX 10.7.3. With the following simple AppleScript which I find everywhere OSX raises an error 'The action "Run AppleScript" encountered an error'

I open up the Automator, create a Service, drop in a "Run AppleScript" node and enter the following code which I assume is correct because as I said it is the way a lot of people are doing it without any complaints.

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

EDIT: When running in Automator I also get an error description:

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

回答1:


Is Enable access for assistive devices enabled? If so, have you tried to reenable it?




回答2:


Well, I guess I'll answer the question anyways (and thanks for editing your question to give a bit more useful detail).

Go to the "Universal Access" pane in System Preferences and at the bottom of the "Seeing" tab, you'll see a "Enable access for assistive devices" checkbox.

Turn that on and I suspect Automator will work.

来源:https://stackoverflow.com/questions/9890157/click-menu-item-on-mac-osx-lion-using-applescript

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!