I have a spreadsheet that writes a calendar event when the form is submitted. As you know, when the form response is edited using the response url, on form submit triggers are not triggered.
https://code.google.com/p/google-apps-script-issues/issues/detail?id=2969#c12
indicates that if the script is attached to the form, then it will trigger. I took the script that was working in the spreadsheet, and transplanted it to the form, and it works with new forms, but still not with edited responses.
So the main question is whether it triggers when the response is edited or not?
If the answer to the above is 'yes' then the related questions are:
Am I correct to assume I need to change the coding of the script to work with FormResponse objects (e.response) rather than the spreadsheet returns?
Can I still set the trigger manually using the Resource menu or do I have to set it programmatically now?
(If the answer is no, then I will be drawing upon Send email when Google Form submission is updated to accomplish the same thing within the spreadsheet...but would prefer to avoid the added complexity of a script that I don't fully understand)
Thanks