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

change all non-printable buttons to printable?

New Here ,
Aug 10, 2024 Aug 10, 2024

Copy link to clipboard

Copied

I have 100s of buttons in an InDesign document that are set to non-printable.

they all need to be set to printable.

Is there an easy way to do this (either using a script or export options)?

TOPICS
Import and export , Scripting

Views

106

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 14, 2024 Aug 14, 2024

Hi @Stephen34495120all9 ,

to save ExtendScript (JavaScript) code for InDesign to a *.jsx file copy the code to an unformatted text file* and save it with suffix .jsx , how to install the file so that you can see it in InDesign's Scripts panel under User see:

Marc Autret:

https://indiscripts.com/pages/help#hd0sb2

Dan Rodney:

https://www.danrodney.com/scripts/directions-installingscripts.html

 

* When on macOSX you could use TextEdit App. Toggle from formatted text (default in TextEdit) to unforma

...

Votes

Translate

Translate
Community Expert ,
Aug 10, 2024 Aug 10, 2024

Copy link to clipboard

Copied

Not sure if that's what you are talking about - replying from my phone:

 

 

app.activeDocument.buttons.everyItem().printableInPdf = true;

 

Or: 

 

app.activeDocument.buttons.everyItem().nonprinting = false;

 

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
New Here ,
Aug 13, 2024 Aug 13, 2024

Copy link to clipboard

Copied

Thank you for the quick reply.

I know this is a stupid question - please let me know if I should use a JavaScript script, and if so, do I need to add more code? I tried several variarions and couldn't get the code to run prpoerly.  Thank you.

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
Community Expert ,
Aug 14, 2024 Aug 14, 2024

Copy link to clipboard

Copied

LATEST

Hi @Stephen34495120all9 ,

to save ExtendScript (JavaScript) code for InDesign to a *.jsx file copy the code to an unformatted text file* and save it with suffix .jsx , how to install the file so that you can see it in InDesign's Scripts panel under User see:

Marc Autret:

https://indiscripts.com/pages/help#hd0sb2

Dan Rodney:

https://www.danrodney.com/scripts/directions-installingscripts.html

 

* When on macOSX you could use TextEdit App. Toggle from formatted text (default in TextEdit) to unformatted text with CMD + T.

 

Regards,
Uwe Laubender
( Adobe Community Expert )

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