我已经使用 ExtendScript 以编程方式在 InDesign 中选择了一些文本:
app.findGrepPreferences = NothingEnum.nothing;
app.findGrepPreferences.appliedFont = myFont;
var matches = app.activeDocument.findGrep();
if(matches.length > 0) {
matches[0].select();
}
我现在如何取消选择它?有没有这样的功能,比如app.clearSelections();
或类似的东西?