如何打开"查找字体" InDesign中的窗口与Applescript

时间:2017-11-09 00:41:20

标签: window applescript adobe-indesign

正如标题所说,我有一个运行的脚本,用于检查InDesign文档中是否缺少字体。我希望它用" Find Font"来骚扰这个人。窗口,直到问题解决或他们点击"忽略"按钮,但我不能为我的生活弄清楚如何触发"查找字体"窗口出来了。

2 个答案:

答案 0 :(得分:0)

菜单操作是这里的方式......

tell application "Adobe InDesign CC 2015" to invoke item 1 of (menu actions whose name is "Find Font...")

答案 1 :(得分:-1)

好的,我找到了解决方案。它不会读取菜单项,除非菜单已经打开。我能够做到以下几点。

tell application "System Events"
    tell process "Adobe InDesign CC 2017"
        click menu "Type" of menu bar 1
        click menu item "Find Font..." of menu "Type" of menu bar 1
    end tell
end tell