In a sheet script function, how can I run/activate a sheet menu item like find and replace function CTRL+H?
Asked
Active
Viewed 390 times
1
-
2What code have you come up with so far? Please provide a [Minimal, Complete, and Verifiable example](https://stackoverflow.com/help/mcve) – jhoepken Sep 15 '17 at 11:20
-
Possible duplicate of [How to create custom keyboard shortcuts for google app script functions?](https://stackoverflow.com/questions/13731589/how-to-create-custom-keyboard-shortcuts-for-google-app-script-functions) – Rubén Jan 02 '18 at 01:00
1 Answers
-1
You cannot bind a keystroke to a specific GAS function. The closest you can get to a keystroke is to call an AddOn function by using Option (Alt) + / and typing the AddOn name.

Brian
- 4,274
- 2
- 27
- 55