• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Custom Save As Settings?

Explorer ,
Jul 11, 2021 Jul 11, 2021

Copy link to clipboard

Copied

Hello.

 

Is there a way to allow me to make my own export settings so I don't have to change everything everytime I export?

 

What I want to do specifically is Save a document as

EPS illustrator 10

Preview Format: None

Options: all unchecked

 

And save this so this is default everytime, is this possible at all?

I'm saving things everytime with these settings and its really annoying to have to change 3 settings 500 times aday.

TOPICS
Import and export , Print and publish , Scripting

Views

122

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe
Advisor ,
Jul 11, 2021 Jul 11, 2021

Copy link to clipboard

Copied

LATEST

Hello @MindGems,

 

Give the below script a try.....

var doc = app.activeDocument;

var saveOpts = new EPSSaveOptions();

saveOpts.cmykPostScript = false;
saveOpts.compatibility = Compatibility.ILLUSTRATOR10;
saveOpts.embedAllFonts = false;
saveOpts.embedLinkedFiles = false;
saveOpts.includeDocumentThumbnails = false;
saveOpts.postScript = EPSPostScriptLevelEnum.LEVEL3;
saveOpts.preview = EPSPreview.None;
saveOpts.saveMultipleArtboards = false;

var saveName = doc.name.replace(/.ai$/i, ".eps");
var newFile = new File ( doc.path + "/" + saveName );   
doc.saveAs(newFile, saveOpts);
doc.close();

 

Regards,

Mike

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines