문제

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"
도움이 되었습니까?

해결책

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

다른 팁

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.

Enable Assistive Devices Turn that on and I suspect Automator will work.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top