I need help on how to refer to a combo box cell in a table.
I have a table in a window with 6 columns. The 6th column has combo box cells in it. I need to be able to add and delete the choices in the combo boxes dynamically (they will all have the same options) from my applescript, but I can’t figure out how to reference it to be able to add and delete the choices.
Shouldn’t I be able to something like this:
tell table view "theTable" of scroll view "theScroll" of window "theWindow"
tell table column 6
make new combo box item at end of combo box items of combo box "theComboBox" with data "sometext"
end tell
end tell
Please help