Remove all paragraph and character style overrides

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

  1. #1

    Default Remove all paragraph and character style overrides

    Does InDesign CS have a quick way to remove all paragraph and character style overrides throughout a document?
    jaime_ash@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Nested Paragraph Style Question
      Hi, the manual is pretty vague about some of the specifics of handling nested paragraph styles. I'm seeing if they will help me in a catalog. I...
    2. Default font for [No paragraph style]
      Hi everyone, Every time I make a new text frame ID is changing the font to Times New Roman. I checked the preferences and didn't see anything...
    3. paragraph style organization
      I am currently working a quite a few books that have over 70 paragraph styles. OH MY ! what a long list to scroll through! Is there a way to...
    4. Paragraph and Character Styles, which should I be using?
      I'm working on a long document. I've created a ton of styles for both Paragraphs and Characters and it's becoming unmanagable and difficult to...
    5. how to create a bullet paragraph style
      I have just recently bought the creative suite, and am looking for this Pagemaker Plugin Pack. The PM Plugin details page says that it is shipped...
  3. #2

    Default Re: Remove all paragraph and character style overrides

    > Does InDesign CS have a quick way to remove all paragraph
    > and character style overrides throughout a document?
    There is no native function for this, but it can be archived through the
    scripting interface. You should ask in the adobe.scripting.indesign
    newsgroup/forum if there is anyone that may help you write a script. I bet
    Dave already have a suitable platform-independent Javascript for this
    problem in his magical sourcecode book.

    Jens


    Jens Schulze Guest

  4. #3

    Default Re: Remove all paragraph and character style overrides

    Create a style of your choosing that has no formatting in it. Select all your imported text, press Ctrl+Alt and your new style. That strips it of everything and you are ready to go.
    Sharon_Hipp@adobeforums.com Guest

  5. #4

    Default Re: Remove all paragraph and character style overrides

    Ready to go broke, you mean. Sharon, you don't won't to zero out all the formatting. You want to cook the formatting down to only the paragraph styles while not having any direct formatting nor any character styles. Not so easy to do.

    Mike Witherell in Washington DC
    mikewitherell_at_jetsetcom_dot_net Guest

  6. #5

    Default Re: Remove all paragraph and character style overrides

    Well, I was hoping someone would have a script for you. I don't, not exactly. But I do have one that Dave Saunders wrote for Mac InDesign (see his website <http://www.pdsassoc.com> for more information). I'm sure someone here could base a Windows-compatible script on it (or maybe Dave could upgrade it to Javascript). So here it is:

    tell application "InDesign CS"
    set myStyles to every paragraph style of document 1
    set find preferences to nothing
    set change preferences to nothing
    set myStyles to rest of myStyles -- dump "No Style"
    repeat with myStyle in myStyles
    search document 1 for "" replacing with "" with find attributes {applied paragraph style:myStyle} with change attributes {applied paragraph style:myStyle}
    end repeat
    end tell

    Here's what I normally do with an imported Word document. First I run a script that deletes double para returns, double tabs, para return followed by word space, double space. Then I look for italics, superscripts, bold italics, etc. I use find/replace to change them to appropriate character styles I've created for this purpose.

    If I'm working with a Word document I've set up for my magazine client, they have already done some basic para styling. So I just run the script above to get rid of the + signs. If not, I just select all, style all paras as body, then run through the document setting other styles as needed. Then I can run the script to get rid of any remaining local formatting.
    Marilyn_Langfeld@adobeforums.com Guest

  7. #6

    Default Remove all paragraph and character style overrides

    You can do this one style at a time with the Find/Change function in the edit menu.

    From the Find/Change dialog, select the Style you want to clear all overrides from in both the Find format and the Change format box.

    I can't see any years on the question or answers above, but it's now October 2011 and I'm using InDesign CS5.
    Unregistered 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