0

我试图让程序 Capture One 在苹果脚本中将一个项目评为 5 星。只要该项目不会导致另一个菜单,我就可以让程序访问一个菜单项,但不幸的是,对于我来说,在评级中,有一个选择评级的选项。我不知道如何让脚本对项目进行评分。任何帮助都会很棒。

这是我到目前为止的代码:

    tell application "Capture One" to activate
    tell application "System Events"


        try
            click menu item ¬
                "5" in menu "Rating" in menu "Adjustments" of menu bar item ¬
                "Adjustments" in menu bar 1 of process "Capture One"

        end try

    end tell

这是我尝试从中选择速率 5 的菜单栏的图像。

菜单栏

4

2 回答 2

1

你能用数字键打分吗?

tell application "System Events" to keystroke "5"
于 2013-01-30T22:25:32.400 回答
0

我不认为菜单项是“5”。这是您可以单击以选择 5 星的击键。那么,菜单项可能是五个星号?“*****”

以下是我们对点击子菜单进行编码的方式:

tell application "System Events"
tell process "Capture One 10"
    set frontmost to true
    click menu item "Capture" of menu 1 of menu item "Select Tool Tab" of menu 1 of menu bar item "View" of menu bar 1

end tell
end tell 
于 2017-01-11T18:15:59.503 回答