Copy link to clipboard
Copied
Is there a script somewhere that will allow me to batch save (PDF) every open tab? And change any file that is RGB color space to CMYK? If i have to I'll combine scripts together for this. I did see a few scripts that were supposed to batch save the AI files into PDF however they were not working on CC2020
1 Correct answer
That's right, I forgot to put in the save options in my code.
I am not sure which preset it uses, whether it does the default one or whether it's the last-used one.
According to the scripting guide, the PDFSaveOptions property .pDFPreset (is it really capitalized like that?) is assignable to the preset you'd like to use in your PDFSaveOptions.
if you do:
saveOpts.pDFPreset = "MY Preset";
or something that already exists there, maybe you can test this out and see what preset your files are ending
...Explore related tutorials & articles
Copy link to clipboard
Copied
Hi
Did you try using the action panel?
Copy link to clipboard
Copied
Try this:
Copy link to clipboard
Copied
Thanks for your reply this saves everything as *.ai file.
Copy link to clipboard
Copied
I changed rgb to (cmyk) and this at least works. it nowconverts RGB to CMYK. the save is still saving as .ai though.
Copy link to clipboard
Copied
To save as PDF, change this
thisDoc.saveAs(newFile);
to this
thisDoc.saveAs(newFile, saveOpts);
Copy link to clipboard
Copied
Awesome this works perfect. My 1 question is what PDF preset does this use? i have a custom PDF preset i use.
Copy link to clipboard
Copied
That's right, I forgot to put in the save options in my code.
I am not sure which preset it uses, whether it does the default one or whether it's the last-used one.
According to the scripting guide, the PDFSaveOptions property .pDFPreset (is it really capitalized like that?) is assignable to the preset you'd like to use in your PDFSaveOptions.
if you do:
saveOpts.pDFPreset = "MY Preset";
or something that already exists there, maybe you can test this out and see what preset your files are ending up with. You'd have to analyze your file, so if there's some simple visual changes you can test this with, that'd work: if there's color bars and registration marks then you can quickly tell if this is working.
Copy link to clipboard
Copied
WORKS PERFECT!!! thanks a ton. 1 question what pdf preset was it using when this Preset part was left out just curious
Copy link to clipboard
Copied
I don't have a clue, who knows. If you find out, please fill us in!

