I have a script working fine however, I cannot work out how to add a popup reminder for after an all day event as started.... example: All day even is midnight to midnight, I want a notification at 9am that day.
my script uses event.addPopupReminder but this seems like it only works for before the event. When I manually look, you have the option to add a reminder "On the day at 9am" but how do I code this? using -900 within the code does not work
(I've snipped the code)
By default, if the cell is blank, it'll add a notification at 9am the day before, which I want to change to 9am on the day
if (C2 == "") {C2 = '900'}
event.addPopupReminder(C2)
On the spreadsheet, I've entered -900 (for 9am on the day) and -1000 (for 10am on the day), neither have worked.