how to make Google Forms execute a script after submit instead of showing Confirmation message?
I tried setting a trigger from the Script Editor in the form which makes and shows a new html page:
function respondToFormSubmit(e) {
return HtmlService.createHtmlOutputFromFile('index');
}
and in Edit -> Triggers for current project I set it run on form submit but it does not.