InDesign脚本:访问应用了特定样式的实例

时间:2016-04-13 14:31:13

标签: jsx adobe-indesign

我对InDesign脚本非常陌生,并希望执行以下操作。 我有一个名为h2的样式的头条新闻。如何获取所有这些实例的集合以进行操作? 谢谢。

1 个答案:

答案 0 :(得分:0)

var props = {
  appliedParagraphStyle : "h2",
  findWhat = ".+";
 }
app.findGrepPreferences = null;
app.findGrepPreferences.properties = props;

var found = app.activeDocument.findGrep();
var n = found.length;
while (n--) {
  
  //do something with instance n of found 
  //which is a text object
  found[n].contents="Found you !";
}