3
我編程選擇使用ExtendScript 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();
或類似的東西?