Toast is a popup window in the lower right corner of the sheets with the given message.
To create a toast dialog, edit or replace the greeting
function as follows:
function greeting() {
SpreadsheetApp.getActiveSpreadsheet()
.toast("Hello World!", "Greeting");
}
To create a toast dialog, edit or replace the greeting
function as follows:
function greeting() {
SpreadsheetApp.getActiveSpreadsheet()
.toast("My message to the end user.","Message Title",-1);
}