خادم المسلمين
24-04-2013, 12:09 AM
السلام عليكم
اقدم لكم فكرة لعمل تايمر timer ليتناقص الوقت كل ثانية بالسويش ماكس4
هذه في
onSelfEvent (load) {
bar.end._visible=false;
var louk : Boolean = false ;
}
onFrame (1) {
stop();
}
و هذا كود زر ابدأ
on (press) {
var timer: Number = 20 ;
bar.end._visible=false;
B_start._visible=false;
progressbar.setProgress(0, timer);
bar.s._xscale=100;
w=bar.s._xscale;
trace(_root.bar.s._xscale);
w_cat=w/timer;
bar.over.text = timer;
// number of seconds
countdown = function(){
timer--;
// deducts 1 from the count
bar.over.text = timer;
bar.s._xscale-=w_cat;
_root.bar.s._x=0;
if(timer==0){
bar.end._visible=true;
B_start._visible=true;
clearInterval(countdownInterval);
}
}
countdownInterval = setInterval(countdown,1000); // intervals 1 second = 1000}
}و لتغيير الوقت فقط غير الرقم 20 اللذي بالسطر الاول
http://www.swishiat.com/vb/attachment.php?attachmentid=11896&stc=1&d=1360684882
و بالمرفق الفلاش للتجربة
الملف المفتوح (http://www.hesab.net/vb/attachment.php?attachmentid=1314&d=1360451163)
الفلاش (http://www.hesab.net/vb/attachment.php?attachmentid=1315&d=1360451576)
اقدم لكم فكرة لعمل تايمر timer ليتناقص الوقت كل ثانية بالسويش ماكس4
هذه في
onSelfEvent (load) {
bar.end._visible=false;
var louk : Boolean = false ;
}
onFrame (1) {
stop();
}
و هذا كود زر ابدأ
on (press) {
var timer: Number = 20 ;
bar.end._visible=false;
B_start._visible=false;
progressbar.setProgress(0, timer);
bar.s._xscale=100;
w=bar.s._xscale;
trace(_root.bar.s._xscale);
w_cat=w/timer;
bar.over.text = timer;
// number of seconds
countdown = function(){
timer--;
// deducts 1 from the count
bar.over.text = timer;
bar.s._xscale-=w_cat;
_root.bar.s._x=0;
if(timer==0){
bar.end._visible=true;
B_start._visible=true;
clearInterval(countdownInterval);
}
}
countdownInterval = setInterval(countdown,1000); // intervals 1 second = 1000}
}و لتغيير الوقت فقط غير الرقم 20 اللذي بالسطر الاول
http://www.swishiat.com/vb/attachment.php?attachmentid=11896&stc=1&d=1360684882
و بالمرفق الفلاش للتجربة
الملف المفتوح (http://www.hesab.net/vb/attachment.php?attachmentid=1314&d=1360451163)
الفلاش (http://www.hesab.net/vb/attachment.php?attachmentid=1315&d=1360451576)