如何使用ExtendScript以编程方式清除InDesign中的文本选择?

时间:2012-05-24 18:14:16

标签: adobe textselection extendscript adobe-indesign

我使用ExtendScript以编程方式在InDesign中选择了一些文本:

app.findGrepPreferences = NothingEnum.nothing;
app.findGrepPreferences.appliedFont = myFont;
var matches = app.activeDocument.findGrep();
if(matches.length > 0) {
  matches[0].select();
}

我现在如何取消选择?是否没有此功能,如app.clearSelections();或类似的东西?

1 个答案:

答案 0 :(得分:3)

尝试:

app.activeDocument.select(NothingEnum.NOTHING);