Increment row of UI element

set startRow to first row of splitter group 1 of group 1 of window 1 whose description = "adayzdone"

--> row 39 of splitter group 1 of group 1 of...

Is there a way to get to row 40 of splitter group 1 of group 1 of window 1 ?

set endRow to startRow + 1 obviously does not work … but it is what I need.

I am trying to avoid doing a repeat with i from 1 to row count because there are a lot of rows. The name property seems to be empty.

Hi,

maybe the attribute AXIndex of the row is available. The value is the (zero-based) index of the row

Thanks Stefan… that’s perfect

set startRowCount to (value of attribute "AXIndex" of startRow) + 1