2 つのパラメーター (名前、email2send) を持つメッセージを表示するこの単純な UI を作成しようとしています。しかし、私がそれを実行すると、これだけが得られます:
変数 msg の内容はパネルには表示されず、パネルのタイトルのみが表示されます。これを行う正しい方法は何ですか?
// Show confirmation
function showMSG(name, email2Send) { // for ease of use I give the urls as parameters but you could define these urls in the function as well
var app = UiApp.createApplication().setHeight(60).setWidth(200);
app.setTitle("Msg send with sucess!");
var msg = "You request to " + email2Send + " a response from " + name;
app.add(app.createVerticalPanel().setTag(msg));
var doc = SpreadsheetApp.getActive();
doc.show(app);
}
助けてくれてありがとう!