Apps Script で開いた UI ウィンドウを閉じることはできますか?
しかし、他の意見があるかどうかを知りたかったのです。
アクティビティが終了したら閉じたいポップアップする「待機ウィンドウ」があります。
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();
これは不可能だと思いますが、それが不可能な場合は、Google がドキュメントから削除してくれることを望みます。
回避策として、「作業が完了しました。OK をクリックしてください」という 2 つ目の GUI を起動すると、問題なく動作します。