Automator 无法在内部工作 xcode

Automator not working inside xcode

我正在 运行 使用 applescript 构建一个自动化器,虽然它在自动化器内部工作,但当 运行 来自 xcode 时它失败了。 这是我的代码:

tell application "Xcode"
    set targetProjectPath to path of active workspace document
    set targetProjectPath to POSIX file (targetProjectPath & "/..") as string
    set targetProjectPath to POSIX path of targetProjectPath
    tell application "System Events"
        tell process "Xcode"
            click menu item "Save" of menu 0 of menu bar item "File" of menu bar 0
        end tell
    end tell
    return {targetProjectPath}
end tell

我正在尝试触发保存,return 我正在尝试激活活动工作区的路径,以便稍后做一些工作。 我几天前才开始做,所以如果真的很愚蠢,请原谅我。

真的很简单。我所需要的只是授予 xcode 访问权限,以便能够修改辅助功能设置。代码运行良好。