#32001/5/29 9:33:47
onClipEvent (load) {
days = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday");
months = new Array("December","January","February","March","April","May","June","July","August","September","October","November","December");
timedate = new Date();
}
onClipEvent (enterFrame) {
hour = timedate.getHours()-1;
minutes = timedate.getMinutes();
seconds = timedate.getSeconds();
todaydate = timedate.getDate();
day = timedate.getDay();
dayname = days[day];
month = timedate.getMonth()+1;
monthname = months[month];
year = timedate.getFullyear();
if (length(minutes)==1) {
minutes = "0"+minutes;
}
if (length(seconds)==1) {
seconds = "0"+seconds;
}
currenttime = hour+":"+minutes+":"+seconds;
currentdate = todaydate+"/"+month+"/"+year;
fulldate = dayname+" "+todaydate+" "+monthname+" "+year;
delete timedate;
timedate = new Date();
}
哈哈!这样就可以了!