谁给我发一个3分钟或5分钟的flash倒计时,最后10秒带声音。 362568441@qq.com
发布网友
发布时间:2022-04-29 22:14
我来回答
共1个回答
热心网友
时间:2023-10-09 15:47
我找了个资源简单改动一下:16秒(15--0)倒计时,最后10(9--0)秒带声音(你需要在flash同文件夹下放一个1.mp3声音文件);
该flash1桢2个图层
图层1放脚本如下:
txt = 15;
var song0 = new Sound();
datas = new Date();
time = int(datas.getSeconds());
function djs() {
_root.onEnterFrame = function() {
datas = new Date();
newtime = int(datas.getSeconds());
if (newtime != time) {
txt--;
if (txt<10&&txt>=0) {
song0.loadSound("1.mp3", true);
txt2 = Math.floor(song0.ration/1000)+"sec";
}
if (txt<0) {
txt = 15;
}
time = newtime;
}
};
}
图层2放一个动态文本,文本框50X50大小即可,变量名txt;
再放一个开始按钮,按钮下放脚本如下:
on(press){
djs()
}
就这些,你试试吧!