onClipEvent (enterFrame) {
myclock=new Date() ;
clocktime = ((myclock.getHours())+ ":" + (myclock.getMinutes()) + ":" + (myclock.getSeconds())) ;
_root.timeclock.text=clocktime;
}
Right now, we have a working twenty-four-hour clock. If youre unsure of how that works, try taking a look at this lesson. If youre clear, move on to the last step.


