我正在使用Flash Actionscript 2.0
按下按钮后如何禁用按钮,经过一段规定的时间后,是否允许重新启用或重置此按钮?
答案 0 :(得分:3)
这很简单。试试这个:
点击后,您的按钮将在10秒后启用。
的时间表:
myBtn.onRelease = function() {
this.enabled = false;
enabledB = setInterval(enabledBtn,10000); //control activate time
}
function enabledBtn(){
myBtn.enabled = true;
clearInterval(enabledB);
}