3

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

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

我现在如何取消选择它?有没有这样的功能,比如app.clearSelections();或类似的东西?

4

1 回答 1

3

尝试:

app.activeDocument.select(NothingEnum.NOTHING);
于 2012-05-25T09:35:30.367 回答