#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);
}