Here’s an example of a simple timer which displays minutes, seconds, and milliseconds, which I built in Flex using the flash.utils.Timer class. You can start and stop the timer using two Button controls.
Full code after the jump.
<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2007/08/14/creating-a-simple-timer-in-flex-with-the-flashutilstimer-class/ -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="vertical"
verticalAlign="middle"
backgroundColor="white"
creationComplete="init()">
<mx:Script>
<![CDATA[
import flash.utils.Timer;
import flash.events.TimerEvent;
private const MIN_MASK:String = "00";
private const SEC_MASK:String = "00";
private const MS_MASK:String = "000";
private const TIMER_INTERVAL:int = 10;
private var baseTimer:int;
private var t:Timer;
private function init():void {
t = new Timer(TIMER_INTERVAL);
t.addEventListener(TimerEvent.TIMER, updateTimer);
}
private function updateTimer(evt:TimerEvent):void {
var d:Date = new Date(getTimer() - baseTimer);
var min:String = (MIN_MASK + d.minutes).substr(-MIN_MASK.length);
var sec:String = (SEC_MASK + d.seconds).substr(-SEC_MASK.length);
var ms:String = (MS_MASK + d.milliseconds).substr(-MS_MASK.length);
counter.text = String(min + ":" + sec + "." + ms);
}
private function startTimer():void {
baseTimer = getTimer();
t.start();
}
private function stopTimer():void {
t.stop();
}
]]>
</mx:Script>
<mx:ApplicationControlBar dock="true">
<mx:Button label="Start timer" click="startTimer()" />
<mx:Button label="Stop timer" click="stopTimer()" />
</mx:ApplicationControlBar>
<mx:Label id="counter" fontSize="96" />
</mx:Application>
View source is enabled in the following example.
Here’s a similar version using the DateFormatter class. Note that unlike the previous code, this version doesn’t include milliseconds in the output.
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="vertical"
verticalAlign="middle"
backgroundColor="white"
creationComplete="init()">
<mx:Script>
<![CDATA[
import flash.utils.Timer;
import flash.events.TimerEvent;
private const TIMER_INTERVAL:int = 10;
private var baseTimer:int;
private var t:Timer;
private function init():void {
t = new Timer(TIMER_INTERVAL);
t.addEventListener(TimerEvent.TIMER, updateTimer);
}
private function updateTimer(evt:TimerEvent):void {
var d:Date = new Date(getTimer() - baseTimer);
counter.text = dateFormatter.format(d);
}
private function startTimer():void {
baseTimer = getTimer();
t.start();
}
private function stopTimer():void {
t.stop();
}
]]>
</mx:Script>
<mx:DateFormatter id="dateFormatter" formatString="NN:SS" />
<mx:ApplicationControlBar dock="true">
<mx:Button label="Start timer" click="startTimer()" />
<mx:Button label="Stop timer" click="stopTimer()" />
</mx:ApplicationControlBar>
<mx:Label id="counter" fontSize="96" />
</mx:Application>




Hey Peter, why didn’t you use binding on the textfield with a dateformatter instead of splitting up the string? I haven’t checked but does a dateformatter allow for seconds?
Just curious. Great blog btw!
John,
DateFormatter does support seconds, but I don’t believe it supports milliseconds. But yes, I probably should update the post above and show the easier/better way that uses DateFormatter as it’d be significantly less code and a better approach if you didnt need millisecond accuracy.
Hello Peter,
I use your second example, but when I use a dateformatter like JJ:NN:SS, it always starts with 01:00:00 . Is this normal? Because my getTimer is just a few seconds…. Is this a known problem? Or do you know how I have to start with 00:00:00.
Thanks a lot! And euhm… very useful blog!!!
Wannes,
What about something like this:
private function updateTimer(evt:TimerEvent):void { var ms:Number = getTimer() - baseTimer var d:Date = new Date(0, 0, 0, 0, 0, 0, ms); counter.text = dateFormatter.format(d); }Peter
Thanks Peter!
Peter,
Great Blog finding it a great help learning flex and actionscript. I was wonder if you could use the above method to display the system time on an appliction so the current user can see the date and the time? Or is there another method for that?
Thanks
David
Managed to get what I was looking for with this below. It works for what I’m looking for. Not sure if its correct. Thanks for the start.
import flash.utils.Timer; import flash.events.TimerEvent; private const TIMER_INTERVAL:int = 10; private var appTime:Timer; private function startClock():void { appTime = new Timer(TIMER_INTERVAL); appTime.addEventListener(TimerEvent.TIMER, updateTimer); appTime.start(); } private function updateTimer(event:TimerEvent):void { var currentDate:Date = new Date(); dateAndTimeDisplay.text = timeDisplayFormatter.format(currentDate); }Cheers
David
How would you add hours to this?? I attempted it but my hours started out at 18:00:00?
Nicole
I’m having the same problem with hours .. with 3900 (seconds) input as duration into the following function, it yields 19:05 instead of the expected 01:05:
private function getDuration(obj:Object, column:DataGridColumn): String { var duration: int = Objective(obj).lm ? Objective(obj).lm.video.duration*1000 : 100; var durationFormatter: DateFormatter = new DateFormatter(); durationFormatter.formatString = "JJ:NN"; return durationFormatter.format(new Date(duration)); }Figured it out: Date produces a local time, so the displayed time must be adjusted with the offset. Beware that
getTimeZoneOffset()does appear to account for daylight savings time; where newDate(0).getTimeZoneOffset()returns 360,Date().getTimeZoneOffset()returns 300 as I’m now in Central Daylight Time.private function getDuration(obj:Object, column:DataGridColumn): String { var tzOffset: int = new Date(0).getTimezoneOffset() * 60 * 1000; var duration: int = Objective(obj).lm ? Objective(obj).lm.video.duration*1000 : 100; var durationFormatter: DateFormatter = new DateFormatter(); durationFormatter.formatString = "JJ:NN"; return durationFormatter.format(new Date(duration + tzOffset)); }Thank you again for your posts, VERY helpful. I was utterly confused until I found that getTimer was in flash.utils - could not figure out by reading where that function came from!
===>
1137: Incorrect number of arguments. Expected no more than 0.
huy,
Which version of the Flex SDK, Flash Player, and OS are you using?
I’ve never seen that error before. It may be worth filing a bug at http://bugs.adobe.com/flashplayer/ .
Peter
(PS: If you post the bug number here, a few of us can vote/subscribe.)
Absolutely a super post for a beginner in Flex such as myself.
I have been able to get the sample working without any issues and am now changing it to suit my needs.
Many thanks!