通过applescript运行Xcode(osascript)

时间:2016-01-14 02:23:02

标签: ios xcode vim applescript

  • OSX Yosemite
  • Xcode 7.1

我正在通过vim或atom开发iOS。 但有一件事我不喜欢。 必须按下命令+选项卡,然后在想要运行时切换到Xcode。

我发现这个脚本解决了这个问题。但它效果不好。

tell application "Xcode"
    activate
    tell application "System Events"
        perform (keystroke "r" using command down)
    end tell
end tell

或其他AppleScript。它也不起作用。

tell application "Xcode"
    activate

    set targetProject to project of active workspace document
    if (build targetProject) is equal to "Build succeeded" then
        launch targetProject
    end if
end tell

PLZ帮助。

1 个答案:

答案 0 :(得分:2)

第一个脚本几乎正确,只是perform语法错误

activate application "Xcode"
tell application "System Events"
    tell process "Xcode"
        keystroke "r" using command down
    end tell
end tell