now = new Date (); year = now.getYear() + 1900; month = now.getMonth() + 1; date = now.getDate(); hour = now.getHours(); minute = now.getMinutes(); second = now.getSeconds(); trace(date+"."+month+"."+year+" "+hour+":"+minute+":"+second);