我是使用inDesign进行编码的新手,但对如何实现此目标一无所知... 基本上,我需要生成50多个宣传册范围表。该文档使用从.csv文件合并的数据对产品进行分类。
我需要节省时间的是一个脚本,该脚本然后插入足够的页面(四舍五入到最接近的四位),并将Master-A和Master-B价差分配给封面和倒数第二页。
有人能指出我正确的方向吗?
答案 0 :(得分:0)
这是一个AppleScript,可以帮助您入门
tell application "Adobe InDesign CC 2019"
tell document 1
repeat until (count of pages) is 8
make pages
end repeat
set applied master of pages to (item 1 of (master spreads whose name prefix is "A"))
set applied master of page 1 to (item 1 of (master spreads whose name prefix is "B"))
set applied master of page -1 to (item 1 of (master spreads whose name prefix is "B"))
end tell
end tell