[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
(DTPtechNote:1153) [AS-InDesign] 表の前空き設定
表を見出しの罫巻きとかに利用しているとき,改ページを挿入すると表組の前空き設定がそのままページの最初についてしまった(笑)
なので,そういうのは段落設定で空きを設定しましょう。
もうやっちゃったのは下のやつで修正しましょう(^^;;;;;
(*
ドキュメント中のテーブルの前空きを設定する
*)
set cnt to 0
set space_before to 0 --空き量
tell application "InDesign CS_J"
activate
tell document 1
set mytextframes to every text frame
repeat with i in mytextframes
set mytables to every table of i
repeat with ii in mytables
set space before of object reference of ii to space_before
set cnt to cnt + 1
end repeat
end repeat
display dialog (cnt & "個のテーブルを処理しました") as Unicode text
end tell
end tell