Creating a Timer, but having issues...
Hey! I'm new to the fourms, and fairly new to Flash. I am making a game where I want to have a timer running over each level (a total of 4). When the user has finished the game, I want the timer to stop and then display their time.
I have 2 dynamic text boxes with the varibles set to them as "Seconds" and the other as "Min". Here is the ActionScript I have for it right now:
var Seconds = 0;
var Min =0;
function timer():Void
{
_root.Seconds += 1;
}
setInterval(timer, 1000)