1
我正在嘗試編寫一個腳本來將電子表格列標題轉換爲表單中的問題。我希望能夠在電子表格所在的文件夾中運行此腳本,並讓它在相同的文件夾中創建表單。問題是,無論我放置腳本的位置如何,表單都會在根文件夾中創建。我在Form和FormApp文檔中找不到任何幫助。我敢肯定它只是一個簡單的MOD的函數調用,但是......使用腳本在非根文件夾中創建窗體
function createForm()
{
// Create a new form, then add a checkbox question, a multiple choice question,
// a page break, then a date question and a grid of questions.
var form = FormApp.create('New Form');
var form = FormApp.create('Form Name');
var item = form.addCheckboxItem();
item.setTitle('This is a bunch of gibberish!!!!!!!!!!!!');
item.setChoices([
item.createChoice('Relish')
]);
Logger.log('Published URL: ' + form.getPublishedUrl());
Logger.log('Editor URL: ' + form.getEditUrl());
}