Reputation: 436
I am new to Google Apps Script The problem is that for my Google form my apps script is not running. I have tried following steps
But the script is not triggering. Please answer my question if someone have idea what is wrong.
Upvotes: 0
Views: 596
Reputation: 21
The onOpen() and onEdit() triggers work when you are opening the form within Google Drive but not on the live form. Are you wanting to write scripts to analyse and respond to user's input? If so you can use onFormSubmit() on the spreadsheet which you use as the Destination of the form.
See example here: https://developers.google.com/apps-script/quickstart/forms
Upvotes: 2