主题:  求助

lsf001

职务:普通成员
等级:1
金币:0.0
发贴:1
注册:2002/12/23 21:11:11
#12002/12/23 21:18:46
谁知道在FLASH中如调出系统日期和时间,并可否举例。在此先对您提供的帮助表示十份感谢!



Mozier

职务:管理员
等级:5
金币:11.0
发贴:2994
注册:2004/1/12 17:26:30
#22002/12/23 21:46:39
this.onEnterFrame=function(){
myDate=new Date();
myHours=myDate.getHours();
myMinutes=myDate.getMinutes();
mySeconds=myDate.getSeconds();
myGetYears=myDate.getFullYear();
myGetmonth=myDate.getMonth()+1;
myGetdate=myDate.getDate();
trace(myGetYears+"/"+myGetmonth+"/"+myGetdate);
trace(myHours+":"+myMinutes+":"+mySeconds);
}