1
我在Google日曆中有幾個日曆。我正在學習Google腳本,並希望創建一個腳本,將一個事件從我的一個日曆複製到另一個日曆,並有機會修改循環等參數。如何使用Google Script將日曆事件複製(複製)到另一個日曆?
我在Google日曆中有幾個日曆。我正在學習Google腳本,並希望創建一個腳本,將一個事件從我的一個日曆複製到另一個日曆,並有機會修改循環等參數。如何使用Google Script將日曆事件複製(複製)到另一個日曆?
一些代碼開始:
function myFunction() {
var calendarSource = CalendarApp.getCalendarById("calendarID");
var calendarDestination = CalendarApp.getCalendarById("calendarID");
var eventToCopy = calendarSource.getEvents(new Date("July 21, 2009 EST"), new Date("July 22, 2009 EST"));
//read up: https://developers.google.com/apps-script/class_recurrence
var newRecurrence = CalendarApp.newRecurrence().addWeeklyRule().times(10);
for (var i in eventToCopy){
if (eventToCopy[i].getTitle() == "event name"){
var newEvent = calendarDestination.createEventSeries(eventToCopy[i].getTitle(), eventToCopy[i].getStartTime(), eventToCopy[i].getEndTime(), newRecurrence);
}
}
這應該讓你開始,
歡迎堆棧溢出!你有什麼嘗試?你遇到了什麼困難?更多關於在這裏提問的問題:[如何提問](http://stackoverflow.com/questions/how-to-ask) – Artemix