有谁知道如何在Google App Script中显示屏幕效果?我想检查电子表格的行时显示屏幕闪烁。谢谢。
答案 0 :(得分:1)
在脚本编辑器中将Splash Screen创建为HTML文件。在File-> New下选择Html文件。调用文件test_HTML并将其放在文件中:
<!DOCTYPE html>
<html>
<head>
<base target="_top">
</head>
<body>
Splash
</body>
<script>
setTimeout(myFunction, 3000)
function myFunction() {
google.script.host.close();
}
</script>
</html>
在Code.gs中放置以下内容:
function onEdit(e){
var splashScreen = HtmlService.createHtmlOutputFromFile('test_HTML')
.setHeight(600)
.setWidth(600);
SpreadsheetApp.getUi()
.showModalDialog(splashScreen, 'Dialog title');
}
在本例中,文档的编辑和编辑,将弹出启动画面HTML并显示3秒钟。您必须修改它才能使用您的代码,但应该为您提供将HTML服务用作启动画面的基本原理。