Google App Script Toast Popup

PHOTO EMBED

Tue May 21 2024 16:11:21 GMT+0000 (Coordinated Universal Time)

Saved by @coderule #js

/**
 * Show msg (toast or dialog)
 */
function showMsg(text, type='silent') {

  Logger.log(text);
  
  const ss = SpreadsheetApp;

  if (type == 'dialog') {
    ss.getUi().alert(text);
  } else {
    ss.getActiveSpreadsheet().toast(text, 'Status', 60);
  }
}
content_copyCOPY