プロパティとか
-- tell rows of table 1 of item 1 of selection get properties end tell -- tell row 1 of table 1 of item 1 of selection get properties end tell -- tell column 1 of table 1 of item 1 of selection get properties end tell -- tell cell 1 of table 1 of item 1 of selection get properties end tell
もろもろ
--overflows is trueのセルを取得
tell text frame 1
tell table 1
set aaa to every cell whose overflows is true
repeat with aa in aaa
tell aa
set bb to contents of properties of aa
display dialog bb
end tell
end repeat
end tell
end tell
補
※上記もろもろは、CS2にて。