Applescript:预计行结束但发现号码

时间:2012-06-11 18:45:53

标签: scripting syntax numbers applescript itunes

我正在尝试使用applescript在iTunes中自动选择一个菜单项。但是,每次运行此脚本时,我都会收到一条错误消息,指出“预期行结束但找到了数字,并指向”scrollarea 1“。我正在使用Apple的UIElement检查器来获取GUI元素的名称iTunes。非常感谢任何帮助。

这是我到目前为止所拥有的:

tell application "iTunes"
      activate
      delay 10
      tell application "System Events"
            key code 53
            tell outline 1 of scrollarea 1 of window 1
                 click menu 1
            end tell
      end tell
end tell

好吧,我点击了我需要点击的内容。现在唯一的问题是它实际上没有点击它,它只是返回AXValue。我需要它来实际点击iTunes中的项目。

1 个答案:

答案 0 :(得分:0)

activate application "iTunes"
tell application "System Events"
    tell process "iTunes"
        select row 15 of outline 1 of scroll area 2 of window "iTunes"
    end tell
end tell