7

我正在尝试编写一个自定义的 xcode4 行为来使用 Perforce 检查当前的活动文件。我知道我可以编写一个自定义行为以在击键时运行(例如,F1) ,获取它的路径,并尝试通过 Perforce 对其进行检查。

据我所知,AppleScript 是访问目标文档的最佳方式,因为它可以轻松导航 Xcode DOM。鉴于此,DOM 本身就是一个迷宫。

这可以做到吗?

4

1 回答 1

7

是的。

tell application "Xcode"
    set CurrentActiveDocument to document 1 whose name ends with (word -1 of (get name of   window 1))
    set WhatYouWant to path of CurrentActiveDocument
end tell
于 2013-01-30T10:43:13.327 回答