Como posso limpar programaticamente a seleção de texto no InDesign com o ExtendScript?

Eu selecionei programaticamente algum texto no InDesign usando o ExtendScript:

app.findGrepPreferences = NothingEnum.nothing;
app.findGrepPreferences.appliedFont = myFont;
var matches = app.activeDocument.findGrep();
if(matches.length > 0) {
  matches[0].select();
}

Como posso desmarcá-lo agora? Não há nenhuma função para isso, comoapp.clearSelections(); Ou algo desse tipo?

questionAnswers(1)

yourAnswerToTheQuestion