This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function sendBookingEmailsByDate() { | |
| const sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName('Clients'); | |
| const data = sheet.getDataRange().getValues(); | |
| const headers = data[0]; | |
| const nameCol = headers.indexOf('Client Name'); | |
| const titleCol = headers.indexOf('Calendar Event Title'); | |
| const sentCol = headers.indexOf('Email Sent?'); | |
| const timestampCol = headers.indexOf('Timestamp'); | |
| const now = new Date(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Imports System | |
| Module Program | |
| Sub Main() | |
| dim i as integer | |
| dim temp1, temp2, temp3 as string | |
| temp1 = "gui/main_custom/vid/frame_" | |
| temp2 = ".jpg" | |
| temp3 = "pause 0.05" | |
| for i = 1 to 125 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Module Program | |
| Sub Main() | |
| dim i as integer | |
| dim temp1, temp2, temp3 as string | |
| temp1 = "gui/main_custom/vid/frame_" | |
| temp2 = ".png" | |
| temp3 = "pause 0.05" | |
| for i = 1 to 125 | |
| if i < 10 Then | |
| console.writeline("""" & temp1 & "000" & i & temp2 & """") |