我对InDesign脚本非常陌生,并希望执行以下操作。 我有一个名为h2的样式的头条新闻。如何获取所有这些实例的集合以进行操作? 谢谢。
答案 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 !";
}