Google Slidesの上部に SCRIPT > Dialog のメニューを追加するコードを試しました。
追加したSCRIPTメニュー からDialog をクリックすると、ダイアログが表示されます。
After clicking Dialog from the added SCRIPT menu, the dialog will be displayed.
Apps Script
Code.gs
function onOpen() {
SlidesApp.getUi()
.createMenu('SCRIPT')
.addItem('Dialog', 'modalessTemplate')
.addToUi();
}
function modalessTemplate() {
const htmlOutput = HtmlService
.createTemplateFromFile("index")
.evaluate()
.setWidth(360)
.setHeight(120);
SlidesApp.getUi().showModelessDialog(htmlOutput, "MyGUI");
}
index.html
<!DOCTYPE html>
<html>
<style>
textarea {
width: 80vw;
height: 50vh;
}
</style>
<body>
<textarea id="input"></textarea>
</body>
</html>
Reference
getUi()