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

How to Set Display Performance by Layer in InDesign

New Here ,
Aug 06, 2024 Aug 06, 2024

Copy link to clipboard

Copied

Just wondering if there a way to force (even by plugin or scripting) a display performance setting by layer??  ie - Layer 1 is high quality, layer 2 is typical.

 

Thanks!

 

<Title renamed by MOD>

TOPICS
Performance

Views

80

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

Community Expert , Aug 06, 2024 Aug 06, 2024

It's possible to set it per object - so to all objects on the specified layer - is perfectly scriptable - this should work: 

 

 

app.activeDocument.layers['name'].everyItem().localDisplaySetting = DisplaySettingOptions.HIGH_QUALITY;

 

 

https://www.indesignjs.de/extendscriptAPI/indesign-latest/#DisplaySettingOptions.html#d1e83956

 

https://creativepro.com/how-to-install-scripts-in-indesign/

 

But if you work on Windows... 

 

Votes

Translate

Translate
Community Expert ,
Aug 06, 2024 Aug 06, 2024

Copy link to clipboard

Copied

LATEST

It's possible to set it per object - so to all objects on the specified layer - is perfectly scriptable - this should work: 

 

 

app.activeDocument.layers['name'].everyItem().localDisplaySetting = DisplaySettingOptions.HIGH_QUALITY;

 

 

https://www.indesignjs.de/extendscriptAPI/indesign-latest/#DisplaySettingOptions.html#d1e83956

 

https://creativepro.com/how-to-install-scripts-in-indesign/

 

But if you work on Windows... 

 

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