Annotations and Reminders

Is there a way to remove a reminder (change it to “Never”) within the Annotations and Reminders Inspector using a smart rule or AppleScript? I have found an AppleScript to add a reminder and an alarm to an item but I have not been successful in modifying it to remove one. Any help would be appreciated.

Such a smart rule script would look like this:

on performSmartRule(theRecords)
	tell application id "DNtp"
		repeat with theRecord in theRecords
			set reminder of theRecord to missing value
		end repeat
	end tell
end performSmartRule

Of course it is that simple! Thank you so much!

1 Like