how can you use a few repeat with loops to return all the values in a 2 column 10 column NSTableView?
i know how to do the loops, but i cant get the contents of each cell
thanks for any help
how can you use a few repeat with loops to return all the values in a 2 column 10 column NSTableView?
i know how to do the loops, but i cant get the contents of each cell
thanks for any help
It may depend on your table’s configuration…
Check these:
/Developer/Examples/AppleScript Studio/Table
&
/Developer/Examples/AppleScript Studio/Table Sort
One of my scripts uses this:
data rows of data source of table view "whatever" of scroll view "whatever" of window "whatever"
repeat with i in result
--> contents of cell 1 of i
end
the data source is in Objective C so your script wont work…