kdoc - InDesign+AppleScript

  • 作成日:2010-05-07 13:58:21
  • 修正日:2010-05-07 14:55:46

プロパティとか

↑ページトップへ

--
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にて。