Перенос напоминаний из iCal в Календарь Google

Я переключился с iCloud на календарь Google. Я уже перенес все свои календари через экспорт/импорт в Календарь Google. Теперь я хочу перенести напоминания из iCal/iCloud в Календарь Google. Как я могу это сделать?

Ответы (2)

Насколько я понимаю, напоминания не подлежат передаче. Каждая служба программирует их по-своему, и нет никакого способа (кроме копирования/вставки текста) легко передать их. Надеюсь это поможет.

Я надеюсь, что вы ошибаетесь, но, проведя еще несколько исследований, я думаю, что вы, к сожалению, правы.

Этот скрипт как минимум поможет с экспортом из напоминаний:

#!/usr/bin/osascript

tell application "Reminders"
    set todo_accounts to every account
    -- accounts have lists. loop thru accounts to get their lists.
    repeat with i from 1 to length of todo_accounts
        tell account i
            set todo_lists to get every list
            -- lists have reminders. loop thru lists to get their reminders
            repeat with j from 1 to length of todo_lists
                tell list j
                    set todos to (get reminders)
                    -- if there are no reminders for a list, then ignore the list
                    if length of todos is greater than 0 then
                        -- Write out the name of the list
                        do shell script "echo " & (quoted form of (get name)) & " >> ~/Desktop/todos.txt"
                        -- loop thru the reminders to get properties
                        repeat with k from 1 to length of todos
                            set this_todo to item k of todos
                            if (this_todo is not completed) then
                                do shell script "echo [  ] " & (quoted form of (get name of this_todo)) & " >> ~/Desktop/todos.txt"
                            end if
                        end repeat
                    end if
                end tell
            end repeat
        end tell
    end repeat
end tell
Вставьте это в Apple Script и запустите