Skip to main content

1 reply

Anantha Prabu G
Legend
August 21, 2025

👉 Add this snippet after you build the UI (inside grep_edit() after GREPeditor.show(); or before):

 

// Close palette when pressing ESC
GREPeditor.addEventListener("keydown", function (k) {
    if (k.keyName === "Escape") {
        GREPeditor.close();
    }
});
Thanks,PrabuDesign smarter, faster, and bolder with InDesign scripting.
dublove
dubloveAuthor
Legend
August 21, 2025

There seems to be no response.