Link in Zwischenablage kopieren
Kopiert
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
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
...Link in Zwischenablage kopieren
Kopiert
Hi
Did you try using the action panel?
Link in Zwischenablage kopieren
Kopiert
Try this:
Link in Zwischenablage kopieren
Kopiert
Thanks for your reply this saves everything as *.ai file.
Link in Zwischenablage kopieren
Kopiert
I changed rgb to (cmyk) and this at least works. it nowconverts RGB to CMYK. the save is still saving as .ai though.
Link in Zwischenablage kopieren
Kopiert
To save as PDF, change this
thisDoc.saveAs(newFile);
to this
thisDoc.saveAs(newFile, saveOpts);
Link in Zwischenablage kopieren
Kopiert
Awesome this works perfect. My 1 question is what PDF preset does this use? i have a custom PDF preset i use.
Link in Zwischenablage kopieren
Kopiert
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.
Link in Zwischenablage kopieren
Kopiert
WORKS PERFECT!!! thanks a ton. 1 question what pdf preset was it using when this Preset part was left out just curious
Link in Zwischenablage kopieren
Kopiert
I don't have a clue, who knows. If you find out, please fill us in!
Weitere Inspirationen, Events und Ressourcen finden Sie in der neuen Adobe Community
Jetzt ansehen