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

Create a new print preset from JS

Explorer ,
Mar 21, 2017 Mar 21, 2017

Copy link to clipboard

Copied

Hello world,

     This one is pretty self explanatory. I'm looking to create a script that I can bring from computer to computer and run it that will generate a list of print presets to use. Is this possible using script?

TOPICS
Scripting

Views

767

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

correct answers 1 Correct answer

People's Champ , Mar 22, 2017 Mar 22, 2017

var pst = app.printerPresets.add ( {

  printer:"My Super Printer",

  name:"My Printer Setting",

  //any other settings you may want to adjust as in

  //http://www.indesignjs.de/extendscriptAPI/indesign10/#PrinterPreset.html

});

HTH

Loic

Votes

Translate

Translate
People's Champ ,
Mar 22, 2017 Mar 22, 2017

Copy link to clipboard

Copied

var pst = app.printerPresets.add ( {

  printer:"My Super Printer",

  name:"My Printer Setting",

  //any other settings you may want to adjust as in

  //http://www.indesignjs.de/extendscriptAPI/indesign10/#PrinterPreset.html

});

HTH

Loic

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
Explorer ,
Mar 22, 2017 Mar 22, 2017

Copy link to clipboard

Copied

LATEST

Thank you so much for the fast and accurate response! I voted up and marked correct.

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