ID CS not printing placed .eps files

Ask a Question related to Adobe Indesign Windows, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. Printing PDF files
      Is there any tag or custom tag that will cause a pdf file to print????
    2. 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...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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

  4. #3

    Default 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

  5. #4

    Default 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

  6. #5

    Default Re: ID CS not printing placed .eps files


    Gabriel_Ayala@adobeforums.com Guest

  7. #6

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139