Reply To: Changing the paragraph style of the NEXT paragraph using Find or GREP

Home Page / Forums / General InDesign Topics (CLOSED) / Changing the paragraph style of the NEXT paragraph using Find or GREP / Reply To: Changing the paragraph style of the NEXT paragraph using Find or GREP

#60753

.. whacked this out in 30 seconds:

app.findTextPreferences = null;
app.findTextPreferences.appliedParagraphStyle = “H2”;
var myResults = app.activeDocument.findText();
for (i=0; i<myResults.length; i++)
myResults[i].parentStory.paragraphs.nextItem(myResults[i].paragraphs[0]).appliedParagraphStyle = “No Indent Body”;

This article was last modified on October 13, 2011

Comments (0)

Loading comments...