Smart display of remaining time
Hi there!
To acknowledge the users of my site about the remaining time of their sessions, I display a countdown in seconds.
But this is not very smart...
How can I display the remaining time in minutes and seconds?
(sessions are limited to 30mn)
Kind of display I wish to use: 16:39
This is the code I use:
count = 1800;
myCountDown = function () {
count--;
};
countInterval = setInterval(myCountDown, 1000);
onEnterFrame = function () {
countDownFld.text = count;
if (count == 0) {
clearInterval(countInterval);
<some action>;
<some another action>;
}
};
Many thanks in advance for your help!