Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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. 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();
}

Help Menu

like image 280
VanacK Avatar asked Apr 09 '14 14:04

VanacK


People also ask

How do I create a custom menu in Google App Script?

In a Google Site, click More > Manage site. In the sidebar, click Apps Scripts, then Add new script to create a script that is bound to the site. Delete any code in the script editor and paste in the code below, which will send an email when the user clicks a link. Return to the Google Site and edit a page.


1 Answers

I'm tired of seeing this question as unanswered!

The publishing process asks for a URL to which Help will point. You also get an opportunity to set things like a description whilst providing screen shots, promotional tiles and an icon.

like image 58
Jesse Scherer Avatar answered Oct 21 '22 17:10

Jesse Scherer