I would like to create a dropdown list in a popup using Google Drive Word document. I'm using this example:
function doGet() {
var app = UiApp.createApplication();
var panel = app.createVerticalPanel();
panel.add(app.createButton("button 1"));
panel.add(app.createButton("button 2"));
app.add(panel);
return app;
}
When executing the script, nothing happens, i cannot see the popup anywhere?
What am i doing wrong?
You can't render UiApp elements within a Document on Drive, only in a Spreadsheet, Site, or published Web-App.
This is noted here: https://developers.google.com/apps-script/guides/ui-service#Overview
You can confirm this is the issue by trying the same script in a Spreadsheet.