主题:  如何在FLASH中显示当前系统时间

goby2008

职务:普通成员
等级:1
金币:0.0
发贴:26
注册:2002/3/1 10:11:00
#12002/3/1 10:15:18
如何在FLASH中显示当前系统时间



5D荣誉斑竹

职务:普通成员
等级:4
金币:13.0
发贴:1504
注册:2000/11/14 12:10:50
#22002/3/1 10:55:08
mydate = new Date();
years = mydate.getFullYear();
month = mydate.getMonth();
dates = mydate.getDate();
hours = mydate.getHours();
minutes = mydate.getMinutes();
seconds = mydate.getSeconds();
day = mydate.getDay();


閑闪互动多媒体

Demon.S

职务:版主
等级:5
金币:10.0
发贴:2468
注册:2000/9/15 13:56:49
#32002/3/1 13:10:13
date.gettime() is a easy way.