简体   繁体   English

Google App Script Add-Ons createAddonMenu() 创建帮助菜单。 怎么称呼?

[英]Google App Script Add-Ons createAddonMenu() create a Help menu. How to call it?

With the new Google App Script (new spreadsheet) when I create a menu for my Add-Ons using createAddonMenu() you will notice that Google add automatically a separator and a Help menu at the end.使用新的 Google App Script(新电子表格),当我使用createAddonMenu()为我的附加组件创建菜单时,您会注意到 Google 在末尾自动添加了一个分隔符和一个帮助菜单。 But I found nowhere documentation that tells what is the name of the function associated with the Help.但是我找不到任何文档来说明与帮助关联的函数的名称是什么。

Would anybody know?有人会知道吗?

function onOpen(e) {
  SpreadsheetApp.getUi().createAddonMenu()
  .addItem('Test A', 'insertChart')
  .addItem('Test B', 'updateCharts')
  .addItem('Test C', 'updateCharts')
  .addToUi();
}

帮助菜单

I'm tired of seeing this question as unanswered!我厌倦了看到这个问题没有答案!

The publishing process asks for a URL to which Help will point.发布过程要求提供Help将指向的 URL。 You also get an opportunity to set things like a description whilst providing screen shots, promotional tiles and an icon.您还可以在提供屏幕截图、宣传图块和图标的同时设置描述等内容。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何在Google表单中使用应用程序脚本或加载项 - How to use apps script or add-ons in Google Forms 如何解决Google App脚本中插件的时间触发限制? - How to get around time trigger limitations for Add-Ons in Google App Script? 为每个编辑器自定义应用程序脚本加载项菜单 - Customizing the apps script add-ons menu for each editor 通过Google App脚本将Google Cloud Search集成到gmail插件中 - integrate google cloud search in gmail add-ons through google app script 将文件写入来自Google App Script服务器代码的附加组件上的Application Data Folder - Writing file to Application Data Folder on Add-ons from Google App Script server code 本地化 Google 插件 - Localizing Google Add-ons 使用插件或Google扩展程序在Google脚本中打印 - Print in google script using add-ons or Google extensions 如何使用脚本编辑器(谷歌文档插件)删除谷歌文档中的空行? - How to remove empty lines in a google doc using the script editor (Google Docs add-ons)? 发布Google Apps脚本附件的生命周期? - Lifecycle of publish Google Apps Script Add-ons? Google Apps脚本附加组件:可安装的触发器限制 - Google Apps Script add-ons: Installable trigger limitations
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM