我想展示一个Timer
关于从 MySQL 获得的时间戳的 ActionScript 3.0 。
所以假设 MySQL (PHP) 返回一个字符串,就像$my_birthday="2013-05-22 12:30:45"
我从 ActionScript by a 得到的那样URLLoader
,我想像这样显示计时器:
My age:
01 hours 01 minutes 42 seconds
我应该使用什么功能:
public function timerHandler(e:TimerEvent)
{
log_textfield.text = String((new Date()).time) - my_birthday; // I need to convert the Date().Time to unix timestamp I guess, and a function for time difference.
}