0
我不知道爲什麼我得到這個錯誤...此腳本中的所有其他代碼被註釋掉... 任何幫助,將不勝感激!無法在對象中找到函數createEvent
錯誤消息:TypeError:在對象中找不到函數createEvent。 (第16行,文件 「守則」)
function createEvent(test)
{
var cal = CalendarApp.getCalendarsByName(test);
var title = 'Script Demo Event';
var start = new Date("April 5, 2013 08:00:00 PDT");
var end = new Date("April 5, 2013 10:00:00 PDT");
var desc = "Created using Google Apps Script";
var loc = "Script Center";
var event = cal.createEvent(title, start, end, {description:desc, location:loc});
};
添加標誌來指定您使用的語言/技術 – 2013-04-05 21:43:56