Я пытаюсь найти способ создать свой собственный текст для ButtonSet в скрипте Google Apps. Я не хочу использовать один из параметров по умолчанию: ДА, НЕТ, ОК и т. Д. Мне бы хотелось, чтобы кнопки читались: «Сегодня» и «Завтра». Это то, что я пробовал до сих пор, но мне не повезло ... какие-либо мысли о том, как я мог бы сделать это? Спасибо!
// Create custom button text for Today and Tomorrow
var TodayButton = CardService.newTextButton()
.setText("Today");
var TomorrowButton = CardService.newTextButton()
.setText("Tomorrow");
var DayButtonSet = CardService.newButtonSet()
.addButton(TodayButton)
.addButton(TomorrowButton);
var responseWeatherImpactsDate = ui.alert('Do you want the first day of the Weather Impacts table to be today or tomorrow?', DayButtonSet);