显示Google脚本的进度
我想向用户显示冗长脚本的进度。理想情况下,我想使用黄色吐司,当运行Google脚本时出现running script cancel dismiss
显示Google脚本的进度
我知道你可以抛出自定义错误,但是如何将自定义消息放到这个黄色框中。
或者另一种选择也可以。不是msgbox,因为它会停止脚本。
回答:
我结束了使用电子表格类吐司:
SpreadsheetApp.getActiveSpreadsheet().toast('message')
回答:
我想htmlService会为你工作:
function function1() { var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getSheets()[0];
var htmlApp = HtmlService
.createHtmlOutput('Your Message')
.setTitle("Progress")
.setWidth(750)
.setHeight(220);
SpreadsheetApp.getActiveSpreadsheet().show(htmlApp);
}
以上是 显示Google脚本的进度 的全部内容, 来源链接: utcz.com/qa/257279.html