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

  1. #1

    Default level 3 eps

    I have some Quark 4.0 files (W2K) that print fine. On the same system, I have converted them to Indesign CS. Now, although the eps graphics show on the screen, they do not print to my postscript printer. They do not export to a pdf file either. The eps files are level 3. Does Indesign CS support level 3 or do I need to install another driver?

    Thanks for the help
    --Rayne
    Rayne@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. The next level
      Ok, I am not even sure what I am looking for here, something built into the states functionality, some kind of behavior, some thing I am not even...
    2. C level
      Hi, I'm wondering if it is possible to use the C level functionality in order to execute a C function inside a .swf ? For example, I want to make...
    3. Control Level 0 MC from Level 1 Button?
      "haydenad" <haydenad@qis.net> wrote in message news:c0bfnh$ir1$1@forums.macromedia.com... level apply _level0.gotoAndPlay("Close"); hth
    4. Control Level 0 MC from Level 1 Button?
      This is probably an easy question but how do I control a Movie loaded in level 0 (I want to change frames) from a button that is loaded in Level 1?...
    5. Control for "Isolation level" at SELECT statement level
      Hi folks. Some RDBMS products support the following syntax format: SELECT .... <whatever...> WITH {READCOMMITTED | REPEATABLEREAD | ......
  3. #2

    Default Re: level 3 eps

    Please make sure the eps files are set to printable in the attributes
    palette.

    Jens


    Jens Schulze Guest

  4. #3

    Default Re: level 3 eps

    As Jen says, but make sure to select them with the direct selection tool.

    And note that this a known issue with converted Quark files. I believe
    Dave Saunders wrote a script to fix the non-printing EPS files, but I
    don't know if it works with ID 2.0.

    Bob

    Bob_Levine Guest

  5. #4

    Default Re: level 3 eps

    No, my script doesn't work with ID 2, but the OP mentions CS, so here it is (again):

    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 and paste to a text editor, save as plain text with a name like: FixNonPrintingItems.js (the .js extension is vital) in the Scripts folder in the Presets folder in your InDesign CS application folder.

    Then open the relevant dialog and double-click the script name in the Scripts palette -- the script makes the assumption that you don't want anything in the document to be non-printing. It's a good idea to run this script immediately after opening a Quark document.

    Dave
    Dave_Saunders@adobeforums.com Guest

  6. #5

    Default Re: level 3 eps

    Thanks for the replies. I appreciate it.
    Dave:
    Thanks for the script. By any chance, did you mean to put this script in the plug-in\scripts folder? Or did you mean to create a folder called scripts under the Presets folder?
    --Rayne
    Rayne@adobeforums.com Guest

  7. #6

    Default Re: level 3 eps

    You should not need to create the Scripts folder in the Presets folder. It should be there, unless you previously deleted it. However, if it isn't there, are you sure you're using CS and not 2.x? If so, then create it in the Presets folder.

    It does not go in the Script folder in the Plug-ins folder.

    Dave
    Dave_Saunders@adobeforums.com Guest

  8. #7

    Default Re: level 3 eps

    > If so, then create it in the Presets folder.

    In which case it won't work anyway since ID 2.0 doesn't recognize java
    script.

    Bob

    Bob_Levine Guest

  9. #8

    Default Re: level 3 eps

    I am sure I am using CS. In my Presets folder I have Images, InDesign Shortcut Sets, InDesign Workspaces, Swatch Libraries and that's it. I haven't deleted any folders.

    Any way, thanks so much for the help.

    --Rayne
    Rayne@adobeforums.com Guest

  10. #9

    Default Re: level 3 eps

    Dave,

    I forgot to thank you when you posted that script before. It is really beneficial to me.

    Thank you,

    John
    John_Kallios@adobeforums.com Guest

  11. #10

    Default Re: level 3 eps

    John,

    Glad it helps.

    Dave
    Dave_Saunders@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