indesign scripts
indesign scripts
Out of context: Reply #7
- Started
- Last post
- 8 Responses
- acescence0
open all your pages in indesign, paste this in script editor app (change "myPreset" to the name of your preset), and click run:
tell application "Adobe InDesign CS3"
set user interaction level of script preferences to never interact
repeat while (count documents) is not equal to 0
print active document using "myPreset"
close active document
end repeat
end tell- you could mod this to open all the docs from a folder for you, etc.acescence