Apps Script公式リファレンス: Apps Script Reference |障害・課題追跡: IssueTracker |Google Workspace: Status Dashboard - Summary

2024年6月2日日曜日

Google Slidesにメニューを追加したい - Add a menu to Google Slides


Google Slidesの上部に SCRIPT > Dialog のメニューを追加するコードを試しました。 
I tried code to add a SCRIPT > Dialog menu to the top of Google Slides.


追加した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()

Latest post

Google Apps Scriptの障害時はIssueTrackerを見てみる - Incidents for Apps Script are reported on Issue Tracker

IssueTracker > Apps Script issues https://issuetracker.google.com/savedsearches/566234 Google Apps Scriptの障害時は IssueTracker に課題が上がっていることが...