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
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)) |