我用扩展Script在设计中按方案选择了一些文字:
app.findGrepPreferences = NothingEnum.nothing;
app.findGrepPreferences.appliedFont = myFont;
var matches = app.activeDocument.findGrep();
if(matches.length > 0) {
matches[0].select();
}
我现在如何取消它? 是不是没有此功能, 比如 app. clearSections ();
或类似的东西?