Last active
May 31, 2018 05:38
-
-
Save UskeS/d11c3795f0bf7c1e09f6981c69067126 to your computer and use it in GitHub Desktop.
Input dialog method in GoogleAppsScript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function prompt (mes){ | |
var string = Browser.inputBox(mes); | |
return string; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment