Ask a Question related to Adobe Indesign Windows, Design and Development.
-
J.R. Bishop #1
ID CS not printing placed .eps files
Greetings all;
ID CS, Windows 2000
I have converted a Quirk 4 document into ID CS and have reworked the document besides. The page is quite simple - it has eleven maps and a company logo, all of which are .eps files formerly made in previous versions of Illustrator but I modified and saved them as .eps's in Illustrator CS. I relinked the original links to the .eps's in the document and updated all of the links. Now, the placed .eps images do not print when printing to the HP LaserJet 4000 TN, nor do they appear when I export the document as a .pdf straight from InDesign, nor do they appear when I create a postscript file via printing to my Print to File printer using the Creo Brisque .ppd and distilling the resulting .ps file. The .eps images are not marked as nonprinting in the attributes window, nor do they print when I select Print Nonprinting items in the print options. The .eps images are black only. Somehow the Mac operator in the department can print it out just fine.
Any tips? I'm running out of ideas and things to check...
J.
J.R. Bishop Guest
-
Printing PDF files
Is there any tag or custom tag that will cause a pdf file to print???? -
Printing of PDF Files
Hello all. My goal is to be able to programmatically print Adobe PDF files without using Acrobat Reader. I searched CPAN and found a whole slew of... -
ID not printing eps files
My group at work recently upgraded to ID CS from PageMaker 6.5. We are experiencing severe problems trying to print ID files containing eps files. We... -
Printing to .ps files
Suddenly, nobody in our office can print to a .ps file from ID 2. After 90 minutes of panicked troubleshooting, I found that if I attempt to print... -
Printing Ascii files via lpr
Is there a utility that takes an ascii text file. prints all of the odd pages on one side of paper, in this case via a dot matrix printer. and I... -
Bob_Levine #2
Re: ID CS not printing placed .eps files
Known issue with converted docs. The EPS files seem to come in as
non-printing. You'll need to select them with the direct selection tool
and turn off the non-printing in the attributes palette.
Bob
Bob_Levine Guest
-
J.R. Bishop #3
Re: ID CS not printing placed .eps files
Thanks! I thought by modifiying and updating the links it would worked fine, but yeah, I guess the attributes set to the placed elements remain the same when you just update them. I had not direct selected the items - I'll keep that in mind next time I have a problem (I just selected the frame).
Now the fun part - I searched the forums and knowledge base for this information before posting. Did I just not see it or how should I have found it? I don't want to post repetitive posts if I can avoid it.
Thanks again ~
J.
J.R. Bishop Guest
-
Dave_Saunders@adobeforums.com #4
Re: ID CS not printing placed .eps files
You can run this JavaScript to fix the problem:
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
}
}
Copy the script to a text editor and save as plain text with a name like: FixNonPrinting.js in the Scripts folder of the Presets folder of your InDesign CS application folder. The script assumes that you don't want any imported graphics or their frames to be nonprinting.
Dave
Dave_Saunders@adobeforums.com Guest
-
Gabriel_Ayala@adobeforums.com #5
Re: ID CS not printing placed .eps files
Gabriel_Ayala@adobeforums.com Guest
-
Gabriel_Ayala@adobeforums.com #6
Re: ID CS not printing placed .eps files
I love it, I love it! Thanks for posting that!
You're the man Dave!
J.R.,
You should also make a backup of all the scripts you have just in case. I needed them after they got me another computer and you'll also need them if you format your hardrive for any reason.
Gabriel_Ayala@adobeforums.com Guest



Reply With Quote

