Hi, I’m new here, thanks for the resource.
I’m trying to add a script for the Reminders app that will move all reminders that have specific tags from my ‘Inbox’ list to the ‘All’ list. The script doesn’t seem to support ‘tag’, is there a workaround?
Appreciate any help!
tell application "Reminders"
set output to ""
set newList to list "All"
show newList
repeat with thisReminder in (get reminders in list "Inbox" whose completed is false)
set tagObj to tag of thisReminder
if (tagObj contains "buy" or tagObj contains "stop") then
set output to output & "• " & tagObj
move thisReminder to newList
end if
end repeat
return output
end tell