我正在尝试根据其文本使用 AppleScript 选择大纲的特定行。
这是我正在考虑的(但不起作用):
repeat with aRow in rows of outline 1 of scroll area 1 of splitter group 1 of window 1
set t to text of cell of aRow
if t starts with "some text" then select aRow
end repeat
问题是这text of cell of aRow
并没有解决我认为应该的问题。我已经使用 Accessibility Inspector 来确认对象层次结构。我尝试在行上使用“UI 元素”来查看哪些元素是可访问的,但它没有返回任何有用的东西。所以我没主意!我错过了什么?