Mobile app version of vmapp.org
Login or Join
Megan533

: InDesign CS3 package script Wanted to find a way to get this script, but after I Google'd this, it seems that it's not so easy to find. Can anyone help me with this? I need a script that

@Megan533

Posted in: #AdobeIndesign #Cs3

Wanted to find a way to get this script, but after I Google'd this, it seems that it's not so easy to find. Can anyone help me with this? I need a script that makes a folder with job name and in the folder creates .indd, .inx, .pdf files that links and embeds fonts.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Megan533

1 Comments

Sorted by latest first Latest Oldest Best

 

@Rivera951

InDesign CS3 JS API exposes Document object method:

bool packageForPrint (to: File,
copyingFonts: bool,
copyingLinkedGraphics: bool,
copyingProfiles: bool,
updatingGraphics: bool,
includingHiddenLayers: bool,
ignorePreflightErrors: bool,
creatingReport: bool
[, versionComments: string]
[, forceSave: bool=false])


This is programatically equivalent to the Package action. The same object also has method

void exportFile (format: varies,
to: File
[, showingOptions: bool=false]
[, using: PDFExportPreset]
[, versionComments: string]
[, forceSave: bool=false])


which can be used to produce PDF, INX and other supported files types.

You'll find more information at jongware.mit.edu/indesigncs3jshelp/pc_Document.html and in appropriate InDesign Scripting Guide.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme