How can you monitor for click events in Google Apps script for spreadsheets? -
i'm managing google spreadsheet script. onedit function working great - can colour cell red putting
spreadsheetapp.getactiverange().setbackgroundrgb(255, 0, 0);
in onedit function. do, however, put same code in onclick function, when user clicks on cell turns red. possible do? can't find way in documentation.
as stated on comments above before there's no way (right now) create onclick()
function google spreadsheets. makes sense due fact google app script functions processed in server, amount of load generated onclick()
events execution make pretty easy deplete quota of requests provided default.
you should using documentation creating button , clicking on it.
Comments
Post a Comment