是否可以關閉在Apps Script中打開的UI窗口?Google Apps腳本關閉()
但我想看看是否有其他的意見。
我有一個「等待窗口」彈出,我想在活動結束時關閉。
var app = UiApp.getActiveApplication();
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = getSheetWithSubmissions(ss);
// create UI app, this works fine
app = createWaitPleaseUI(sheet);
ss.show(app);
//simulated activity
Utilities.sleep(5000);
//this doesn't work despite being in the documentation
app.close();
認爲這是不可能的,但希望谷歌會從他們的文件轉儲它,如果它不能這樣做。
作爲一種解決方法,我可以調出第二個GUI,顯示「工作完成,單擊確定」,然後工作正常。
注意,你指的是這個問題不適用您的例子:它是關於獨立的用戶界面,用戶界面沒有在電子表格中。 –