Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Printing Non Printing Items

Status
Not open for further replies.

denice

Programmer
Mar 15, 2003
130
US
This is an odd one that I am hoping someone can explain.

I have a book converted from quark to InDesign CS. Windows, XP OS. The images are in the text frames. I have all the images set to print, from the Attributes window the selection is NOT checked. So this stands to reason that they will be printed.

I have items on my master page that are not to print. The attribute window had the selection checked. Indicating that the items shouldnt be printed.

I print my book either using export pdf or print dialog box print to pdf distiller. The images do not show up. Very frustrating!

I test the settings in export pdf, and I click Print Non Printing Items. This has the items on the master page and the images in the text frames printed to the pdf. This worked, but the items on the master page I dont want on the document.

I put the items on the master page on a layer that I turn off before exporting and clicking Print Non Printing Items and it works.
I also cut out the image from the text and placed it in. Still didnt print.

My question, and or concern. Why if an image is set to print that it doesnt until the non printing items box is checked for making a PDF? Any settings I could check?
I even tried printing to the printer, it still doesnt appear until the non printing items box is checked.

Thank you
~D


Denice :)
 
Code:
if (app.documents.length != 0) {
 myGraphs = app.activeDocument.allGraphics;
 myLim = myGraphs.length;
 for (i = 0; myLim > i; i++) {
  myGraphs[i].nonprinting = false
 }
 myPIs = app.activeDocument.allPageItems;
 myLim = myPIs.length;
 for (i = 0; myLim > i; i++) {
  myPIs[i].nonprinting = false
 }
}

Paste this text into a new text document and save as 'Fix_Nonprinting.js' in C:\Program Files\Adobe\InDesign CS\Presets\Scripts

Then run the script from the InDesign scripts palette.

- - I hope this helps - -
[sub](Complain to someone else if it doesn't)[/sub]
 
Jim
Thank you for the quick post and possible script fix. I copied and pasted exactly what is in your poste to a new document in InDesign and saved it to the correct location.
The following appeared as I ran the Script from InDesign Scipt Pallet.

JavaScript Error!
Error Number: 8
Line: 1

Your help is greatly appreciated
~D

Denice :)
 
You need a new text document, such as one created with a text editor like Windows Notepad. InDesign cannot make plain text documents. Paste the above code into Notepad and save as a JS file.

- - I hope this helps - -
[sub](Complain to someone else if it doesn't)[/sub]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top