I have Google Apps Script in Spreedsheet that works on currently selected row. To run it I have to select this script from script manager. Is it possible to add this script to the context menu or bind to some shourtcut ?
I have Google Apps Script in Spreedsheet that works on currently selected row. To
Share
You can create a menu with button that will run the script that you want using the onOpen function. See the Apps Script documentation.
You would then have some other function like this.
This can execute any function you want, and you can have multiple menu items that do different things.
Note:
onOpensometimes takes a while to load, so wait 5 seconds.