2012-05-24 58 views
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();或類似的東西?

回答

3

嘗試:

app.activeDocument.select(NothingEnum.NOTHING); 
相關問題