Reply To: Export specific styled text and page number

#105181

What does extract mean?

app.findGrepPreferences = app.changeGrepPreferences = null;
app.findGrepPreferences.properties= {
  fontFamily: "Helvetica Neue (T1)",
  fontStyle: "75 Bold",
  pointSize: 8	
};

var res = app.activeDocument.findGrep();
app.findGrepPreferences = app.changeGrepPreferences = null;
var nRes = res.length;
var listToDisplay = [];

for (var i = 0; i < nRes; i++) {
  listToDisplay.push(res[i].contents);
}

alert(listToDisplay.join("\r"));

This article was last modified on August 3, 2018

Comments (0)

Loading comments...