I have a spreadsheet to track data, that every user with the link can edit. While I understand, that it is a security risk, I do not mind, because the spreadsheet is only know and of interest to the guild I am in.
Further more certain areas are protected and only administrators of the document have access to it.
What I want to do, is, have a GAS respond to "onEdit" for all (anonymous) users.
The easiest example is this:
Code.gs
function onEdit(e) { Browser.msgBox('Editing...'); }
I attached this to the table -> on edit trigger and it does display for me - as I am logged in OR because I am the administrator of this document. However: other (anonymous) users do not get the message box for some reason. I have read through the permissions sheet and it states, that apparently you HAVE to be logged in if you want to use any kind of scripts (except for those time-driven ones, that are executed under the name of the one, who added them).
Is there no workaround? My triggers just copy values from one table to another, ordering and formatting them.
Thank you very much in advance!