![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhnq-eEuC9ZxuurnEvHpP_OaQCsIUpQcSHuUITTKAlS6Km0ts5VbMTPIOkyCbSiP7kJftOBxrECmirgg6t06Q8DeflhXbZ5hMNwF34Ls4Q4TMC_NU3-_3BbWnvsWPKIHfJHKOK-Q3TOvM8/s1600/pre-fill-form-google.jpg)
ID-Form = your form ID
1127584552 = Id form Html
https://docs.google.com/forms/d/ID-form/viewform?entry.1127584552=Pavel
var name = Browser.inputBox('Enter your name'); // CZ Zadej své jméno
function myFunction() {
var name = Browser.inputBox('Enter your name');
}
function myFunction() {
var name = Browser.inputBox('Enter your name' , Browser.Buttons.YES_NO);
}
function myFunction() {
var name = Browser.inputBox('First Input Box' ,'Enter your name' , Browser.Buttons.YES_NO);
}
msgBox(prompt)
msgBox(prompt, buttons)
msgBox(title, prompt, buttons)
Browser.msgBox("hello world");
function myFunction() {
Browser.msgBox( 'hello world');
}
function myFunction() {
Browser.msgBox( 'hello world' , Browser.Buttons.YES_NO);
}
function myFunction() {
Browser.msgBox('First Dialog Box' , 'hello world' , Browser.Buttons.YES_NO);
}