Reputation: 2777
I want to build a script which can allow user to call a form from a function that I added to my spreadsheet menu using addMenu("Menu_name", menuEntries)
method.
How can I implement this "go to live form" from inside my function?
Upvotes: 0
Views: 2740
Reputation: 46792
Simply create a small UI with a link to the form (like any other URL). And add this function in your menu.
See this post for the code to create the UI: Google Apps Script to open a URL
Upvotes: 1