急需一个FLASH倒计时器,可以插入PPT中显示!!! 一分钟倒计时,我的邮箱

2024年11月28日 15:57
有2个网友回答
网友(1):

PPT2007中有自带的记时器
或者我给你一个FLA的代码你直接自己制作一个就可以了

//新建fla文档(as2.0),复制以下代码到第一帧,ctrl+enter 即可看到效果
var timeText:TextField = this.createTextField("time", 0, 0, 0, 100, 20);
function init() {
hitTime = 0;
beginRunTime = 0;
totalRunTime = 0;
timeText.text = "00:00:00";
}
init();
onMouseDown = function () {
switch (hitTime) {
case 0 :
//开始计时
hitTime++;
recordRunTime();
run();
break;
case 1 :
//暂停计时
hitTime++;
delete onEnterFrame;
break;
case 2 :
//恢复计时
hitTime++;
recordRunTime();
run();
break;
case 3 :
//停止计时
init();
delete onEnterFrame;
break;
}
};
function recordRunTime() {
beginRunTime = getTimer();
}
function run() {
onEnterFrame = function () {
trace(hitTime);
if (hitTime == 1) {
var totalHm = totalRunTime=getTimer()-beginRunTime;
} else if (hitTime == 3) {
var totalHm = getTimer()+totalRunTime-beginRunTime;
}
var totalM = int(totalHm/1000);
var hm = totalHm%1000;
var m = totalM%60;
var f = int(totalM/60);
timeText.text = f+":"+m+":"+hm;
};
}

以上代码引自百度

网友(2):

已发你看行不行