我正在寻找能够实现这一目标的应用脚本中的任何更改。 我已经制作了一个按钮并为其分配了正确的功能。
答案 0 :(得分:0)
您可以使用PropertiesService存储特定于用户的数据。
var properties = PropertiesService.getUserProperties();
var buttonStatus = properties.getProperty("buttonStatus");
if(!buttonStatus){
//code to be executed after clicking the button
properties.setProperty("buttonStatus", "clicked");
return;
}
//code to be executed when user clicks the button multiple times (e.g. displaying notification)
return;
}