我使用ExtendScript以编程方式在InDesign中选择了一些文本:
app.findGrepPreferences = NothingEnum.nothing;
app.findGrepPreferences.appliedFont = myFont;
var matches = app.activeDocument.findGrep();
if(matches.length > 0) {
matches[0].select();
}
我现在如何取消选择?是否没有此功能,如app.clearSelections();
或类似的东西?
答案 0 :(得分:3)
尝试:
app.activeDocument.select(NothingEnum.NOTHING);