Question
How to find next/find previous with select text
I want to find and select the result from cursor point in Indesign.
app.findGrepPreferences = null;
app.findChangeGrepOptions.searchBackwards = false;
app.findGrepPreferences.findWhat = "\\[|\\]";
myFound = app.activeDocument.findGrep();
myFound[0].select();
#javascript #indesign
