如何将操作按钮添加到 google-doc?
How add action button to google-doc?
我想用 Apps 脚本向我的 Google 文档添加带有点击操作的按钮或其他小部件;
我该怎么做?
function addButton()
{
var body = DocumentApp.getActiveDocument().getBody();
// code for add button to body.
}
创建菜单
function onOpen() {
menu();
}
function menu() {
DocumentApp.getUi().createMenu('MyMenu')
.addItem('Function Descript', 'functionName')
.addToUi();
}
function functionName() {
//a function that does nothing
}
您最好的办法是自己学习如何执行此操作,这样您就不必在每次需要修改时都return在这里。
如果您想添加按钮,我建议将它们放在 html 的边栏上。这将需要更多的努力,但从长远来看 运行 值得学习如何构建和重用 html 文件。
参考:
我想用 Apps 脚本向我的 Google 文档添加带有点击操作的按钮或其他小部件; 我该怎么做?
function addButton()
{
var body = DocumentApp.getActiveDocument().getBody();
// code for add button to body.
}
创建菜单
function onOpen() {
menu();
}
function menu() {
DocumentApp.getUi().createMenu('MyMenu')
.addItem('Function Descript', 'functionName')
.addToUi();
}
function functionName() {
//a function that does nothing
}
您最好的办法是自己学习如何执行此操作,这样您就不必在每次需要修改时都return在这里。
如果您想添加按钮,我建议将它们放在 html 的边栏上。这将需要更多的努力,但从长远来看 运行 值得学习如何构建和重用 html 文件。