I would like to be able to add items to a list in Reminders in a specific order, using AppleScript.
Using the following script, however, adds the items in a different order each time I run it:
set my_reminders to {"item4", "item3", "item2", "item1", "item"}
tell application "Reminders"
tell list "Reminders"
repeat with the_name in my_reminders
set this_reminder to make new reminder with properties {name:the_name as string}
end repeat
end tell
end tell