我正在发现谷歌应用程序脚本,我对它的潜力非常感兴趣。
我想通过添加自定义菜单来改进Google文档。 我发现很多方法可以在电子表格中制作,但没有任何文件。
我错过了什么吗?
答案 0 :(得分:2)
来自:https://developers.google.com/apps-script/reference/document/document-app#getActiveDocument()
// Add a custom menu to the active document, including a separator and a sub-menu.
function onOpen() {
DocumentApp.getUi()
.createMenu('My Menu')
.addItem('My Menu Item', 'myFunction')
.addSeparator()
.addSubMenu(DocumentApp.getUi().createMenu('My Submenu')
.addItem('One Submenu Item', 'mySecondFunction')
.addItem('Another Submenu Item', 'myThirdFunction'))
.addToUi();
}
答案 1 :(得分:1)
不可能将Document作为脚本的容器,因此无法将菜单项添加到Document。