Skip to content

Instantly share code, notes, and snippets.

@TonyRenHK
Created March 12, 2016 04:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TonyRenHK/cbb2b6234cc7031181fd to your computer and use it in GitHub Desktop.
Save TonyRenHK/cbb2b6234cc7031181fd to your computer and use it in GitHub Desktop.
google app script
function myFunction() {
showURL("http://www.google.com");
}
//
function showURL(href){
var app = UiApp.createApplication().setHeight(50).setWidth(200);
app.setTitle("Show URL");
var link = app.createAnchor('open ', href).setId("link");
app.add(link);
var doc = SpreadsheetApp.getActive();
doc.show(app);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment