单击更改名称的复选框

时间:2014-11-19 10:34:36

标签: macos checkbox click applescript

我想点击一个更改名称的复选框(它被称为"复选框3和#34;或"复选框4",所以我可以'依靠它的名字。)

我尝试过这样的事情:

tell application "System Events" to tell process "Aycons"
    set theCheckbox to checkbox "checkbox 3" of window 1
    tell theCheckbox
        if not (its value as boolean) then click theCheckbox
    end tell
end tell

不幸的是,它并不适合我的需要。

这是复选框的属性,有关如何点击它的任何想法?

enter image description here enter image description here

1 个答案:

答案 0 :(得分:2)

作为索引引用,它不应该改变,但可能不是明显的线性顺序。

例如

set theCheckbox to checkbox 2 of window 1