DTP駆け込み寺

[ 返信 ]

page iの後に[なし]を挿入

処理:最終ページ → 先頭ページ
tell application "Adobe InDesign CS3"
 activate
 set MyDocument to active document
 tell MyDocument
  set pageCount to count pages
  set i to pageCount
  repeat while (i > 0)
   make page at after page i with properties {applied master:nothing}
   set i to i - 1
  end repeat
 end tell
end tell

空白ではなく、共通ページを挿入する場合は、
make page at after page i with properties {applied master:master spread "B-マスター"}

[16599] わん (2014/04/23 Wed 13:15)


残り2件

  1. [16593] InDesignで1ページおきに1ページを挿入 みさこ 2014/04/22 16:20
    1. [16594] 1レコードが1ページのデータソースなら わん 2014/04/22 17:28
      1. [16595] Re: 1レコードが1ページのデータソースなら みさこ 2014/04/22 17:45
        1. [16597] Re^2: 1レコードが1ページのデータソースなら (。。) 2014/04/23 10:10
          1. [16598] Re^3: 1レコードが1ページのデータソースなら みさこ 2014/04/23 10:24
            1. [16599] page iの後に[なし]を挿入 わん 2014/04/23 13:15
              1. [16600] Re: page iの後に[なし]を挿入 みさこ 2014/04/23 14:10
                1. [16601] そして上手くいきました。 みさこ 2014/04/23 18:22