Het kan simpel met een scriptje, dat kan JavaScript of AppleScript zijn op de Mac.
Je kunt dit soort scriptjes vinden op Adobe Studio:
http://studio.adobe.com/en op het InDesign scripting forum:
http://www.adobe.com/support/forums/main.htmlDit script moet je copiëeren (haakjes aan het begin en einde weghalen) , plakkenen in TextEdit, omzetten naar Plain Text en bewaren met de .scpt extentie.
Plaats dit bestand in de InDesign CS map: Presets: Scripts.
In InDesign kun je het script dan dubbelklikken in het Scripts palette.
[tell application "InDesign CS"
-- This section gets the info from the document
set myDocument to active document
set myName to name of myDocument
set myPages to pages of myDocument
set myFolderPath to (choose folder with prompt "Please select the folder you want to save your PDF pages in") as string
set myStyles to name of PDF export presets
set myExportStyle to (choose from list myStyles with prompt "Please Choose an Export style") as string
-- This part is used to get a special character in the file name
set mySeparator to "_"
--This is where things actuaclly are happening
repeat with anItem in myPages
set myPageNumber to name of anItem as string
set MyPDF to myFolderPath & myName & mySeparator & myPageNumber & ".pdf"
set page range of PDF export preferences to myPageNumber
tell myDocument
export format PDF type to MyPDF using myExportStyle without showing options
end tell
end repeat
end tell]