Updating or replacing inline graphic link causes undesired results

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

  1. #1

    Default Updating or replacing inline graphic link causes undesired results

    I have a document that contains about 60 inline graphics all the same size - they are all photoshop documents. When I make a change to the inline graphic and then later update the link - it moves my text and creates a text wrap around the graphic file. It also does this when instead of updating the link I simply re "place" the graphic with the same graphic file.

    Is this normal?

    What I have to do now is delete the graphic and re "place" it into the ID document. Shouldn't there be an easier way?
    Stephen_Field@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Error when updating a link?
      I have a client who is trying to add links to his website and receives the following error: "While executing CCPopup_Link_WebAddress command in...
    2. Help with Link Graphic
      Hello.....I am trying to find/use a graphic in the "_derived" file of Dreamweaver for my hyperlinks (links within my website), but in the _derived...
    3. Replacing Submit Button with text link?
      Is there a way to accomplish the same thing as <input type='submit' value='Submit'> using an anchor tag?
    4. preserve the link to a single Excel cell when updating link
      I want to import a single cell from an Excel spreadsheet into InDesign CS. Initially, I am placing a single cell into a text frame and get the...
    5. Auto updating a popup-menu link in document created from a template. Possible?
      I have created a set of popup-menus in a document and saved it as a template. However when I create a new document from the template the...
  3. #2

    Default Re: Updating or replacing inline graphic link causes undesired results

    Hmm. Text wrap around an inline graphic? The only way to do that is to have text wrap on as a default. Even then, the wrap is applied in such a fashion that it has no effect on the text. But I've never tried the step you describe of updating the link. Let me take a look...

    Well, well, well, It does indeed behave the way you say.

    And the problem is that you can't retroactively switch it off in the UI.

    OK, here's a JavaScript that'll do the job for InDesign CS (is that what you're using?):

    app.findPreferences = null;
    app.changePreferences = null;
    myInlines = app.activeDocument.search("^g",false,false,undefin ed);
    myLim = myInlines.length;
    for (i=0;myLim>i;i++){
    myInlines[i].pageItems[0].textWrapPreferences.textWrapType = TextWrapTypes.none;
    }

    Copy and paste that as a plain text file and save it with the name RemoveWrapFmInlines.js in the Scripts folder of the Presets folder of the InDesign application folder. Double-click its name in the palette and it will reset any text wraps that are applied to your inlines to none.

    The way to avoid getting into this situation is to have text wrap switched off by default.

    Dave
    Dave_Saunders@adobeforums.com Guest

  4. #3

    Default Re: Updating or replacing inline graphic link causes undesired results

    Thank you Dave.

    I removed the text wrap by setting the text wrap pallette to "No text wrap" but I still got the same result. Maybe I am doing something wrong.

    However, I used your script and that corrected the problem.
    Stephen_Field@adobeforums.com Guest

  5. #4

    Default Re: Updating or replacing inline graphic link causes undesired results

    The reason your change in the UI didn't work is because that only applies to future graphics. You had already applied text wrap to those inlines (an accidental feature) and there is no way in the UI to remove the wrap.

    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