I want to be able to run a google apps script as a "macro" with params.
For example, I navigate to script.google.com, that'll show me which scripts are available. I click one of them, then hit "Run" to run it. When I run it, I want to have the script prompt me for some input, and then it'll run some code to create a folder in Drive, some files, give permissions to those files, etc.
In terms of getting input from the person running the script, I don't care if they can pass it in somehow (like cmd line args) or if the code can just prompt the user for the input (console input is fine).
What's the best way to do this?