View reminders_of_the_day.scpt
tell application "Reminders" | |
set output to "" | |
set output to output & "Reminders for " & weekday of (current date) & ":" | |
set myList to "Reminders" | |
set hasOne to false | |
if (count of (reminders in list myList whose completed is false)) > 0 then | |
set todoList to reminders in list myList whose completed is false | |
repeat with itemNum from 1 to (count of (reminders in list myList whose completed is false)) |