如何在Applescript中按名称获取Word文档窗口?

时间:2014-07-12 05:20:43

标签: applescript ms-office

我打开了两个Word文档,想要关闭一个而不是另一个。

我已经搜遍了所有搜索结果,但如果我能弄明白如何获取我想要关闭的窗口的参考资料,我会感到很沮丧。

tell application "Microsoft Word"试用版块中,我尝试过:

activate window "foobar.docx"

set active document to "foobar.docx"

set the active window to "foobar.docx"

和其他几个人。

我如何制作" foobar.docx"活动窗口还是直接引用它?

1 个答案:

答案 0 :(得分:2)

你走了,我在字典中查了一下,但不是大多数应用程序会这样做的,所以我不得不钓到字典:)

然后打开文档的名称是Document 3

tell application "Microsoft Word"
    activate object document "Document3"
end tell