現在の日付・時刻を取得 ☆デジタル時計☆






this.onEnterFrame = function() {
	var obj_date:Date = new Date();
	this.hour_txt.text = obj_date.getHours();
	this.mini_txt.text = obj_date.getMinutes();
	this.sec_txt.text = obj_date.getSeconds();
}