I'm trying to create a new calendar on iCloud using applescript but it makes it on "On My Mac". Is there any way to make it in iCloud instead?
tell application "Reminders"
set newReminderList to list "reminderCal"
tell application "Calendar"
set newCalendarName to name of newReminderList
make new calendar with properties {name:newCalendarName}
end tell
end tell