I registered my trigger on Edit->Current Project's Trigger and then made this:
function onEdit(e) {
SpreadsheetApp.getActiveSheet().toast(e.value);
}
I also tried it without registering the trigger in case there's some odd collision thing. Is there something else I need to do to trigger the function?
onEdit
is reserved for a simple trigger, and will always attempt to run when a user edits cells, even if the function calls services that need authorization. It will generate errors when it encounters those lines. – tehhowch