моя единственная функция
function createFormSection(section, inputNames, opt_prefills) {
var widget = CardService.newTextInput()
.setFieldName(Txt_home)
.setTitle(home);
section.addWidget(widget);
var action = CardService.newAction().setFunctionName('sendemail');
var textButton = CardService.newTextButton()
.setText("Forward")
.setOnClickAction(action);
section.addWidget(textButton);
}
второй -
function sendemail(event) {
}
Могу ли я получить значение текстового поля (Txt_home) во второй функции в скрипте приложения?