私の機能には、メニューとトーストをドキュメントに追加することが含まれます。トリガー(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);
}
ありがとう、