我的柜台正在计数而不是下降?我喜欢它从10分钟倒计时,当小时为0且分钟为0且秒为0时我希望它移除计数器,它应该使用gotoAndStop(2)转到另一帧。
$scope
答案 0 :(得分:2)
像Organis所说:)你需要减去10分钟后的时间。
private var TOTAL_TIME:int = 10 * 60 * 1000; // 10 minutes or 600000 milliseconds
var timePassed:int = getTimer()-startTime;
var timeLeft:int = TOTAL_TIME - timePassed;
// use timeLeft for the display, not timePassed
var seconds:Number = Math.floor(timeLeft / 1000);