创建Applescript以评定5星

时间:2013-01-30 20:55:53

标签: menu click applescript

我正在尝试使用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

这是菜单栏的图片,我正在尝试从中选择Rate 5。

Menu Bar

2 个答案:

答案 0 :(得分:1)

你能给出一个数字击键的评分吗?

tell application "System Events" to keystroke "5"

答案 1 :(得分: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