我的功能包括向文档添加菜单和吐司。我已经验证了触发器(onOpen)也已设置。它仅在用户进入工具、脚本管理器、运行时才有效。我们有太多具有太多背景的用户期望知道如何做到这一点。为什么它不起作用?(使用铬)
function onOpen()
{
var menus = [{name: "Advance in Workflow", functionName:"sendEmail"}];
SpreadsheetApp.getActiveSpreadsheet().addMenu("Auto Advance FG Workflow", menus);
//sheet.toast(Notify/Remind users);
sheet.toast("While you are here we kindly ask that you do not add, modify or remove any columns.","Welcome - " + username,8);
}
谢谢,