Applescript remind

How can I check for an existing reminder in AppleScript so my script to add a reminder doesn’t override an existing reminder?

A record has a reminder property.

tell application id "DNtp"
	repeat with theRecord in (selected records)
		if not (exists (reminder of theRecord)) then beep
	end repeat
end tell
1 Like