Does anyone know if it\'s possible to use Google Apps Scripts to run without needed a manual event? Meaning - I would like to set up a spreadsheet to send a form every day a
function createTimeDrivenTriggers() {
// Trigger every 6 hours.
ScriptApp.newTrigger('getEmails')
.timeBased()
.everyHours(1)
.create();
}
Now it is possible to add time based events.
from: http://code.google.com/googleapps/appsscript/guide_events.html
It's actually possible. Have a look at http://code.google.com/googleapps/appsscript/guide_events.html#Installable