Hello!
I have this script, which runs on all uncompleted past due reminders:
set curDate to current date
tell application "Reminders"
set dueList to every reminder whose completed is false and remind me date is less than curDate as list
repeat with dueItem in dueList
set remind me date of dueItem to (current date) + (60 * minutes)
end repeat
end tell
I want to run it only on the selected reminder in the Reminders.app.
How do I do this? Is it possible?