AppleScript を使用して、特定の順序でリマインダーのリストにアイテムを追加できるようにしたいと考えています。
ただし、次のスクリプトを使用すると、実行するたびに項目が異なる順序で追加されます。
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