Bhaumik
Bhaumik

Reputation: 55

Google apps script post-install tooltip

I have created an add-on in Google Apps Script. There has to be post-install tool tip in add-on. The tool tip is seen at the add-on menu item after installation is complete. Could any one please tell me what is the method to do so or what is the exact procedure to show the tool-tip post install.

Upvotes: 3

Views: 1780

Answers (2)

Peter Flickinger
Peter Flickinger

Reputation: 109

From the script you go to "Publish > Deploy as Docs add-on..." and from there you can add a Post-install tip.

Upvotes: 0

HDCerberus
HDCerberus

Reputation: 2143

The post install tool-tip seen when installing an Addon is not built into the Addon itself, rather it's provided at the time that you publish the Addon. This isn't well documented however, merely lightly implied under 'Publishing instructions' -> 'Prepare and deploy your add-on' when it says 'In the Deploy as Add-on dialog, fill all required fields. The add-on’s name must be the same as the name of the Apps Script project. See the style guide for more information on the other fields.'

The Style Guide then has a section on the 'Post-install tip', implying that this is when it's filled. It could, however, be a lot clearer.

Upvotes: 9

Related Questions