Need help creating a simple timer/counter

[COLOR=#000000][FONT=verdana]Hi :b:

[/FONT][/COLOR]
[COLOR=#000000][FONT=verdana]I am currently making a simple timer/counter in Flash and have run into a little problem. I have a very simple set-up: 1 frame and two dynamic text-boxes. Also two layers (one for the AS and one for the text-boxes).[/FONT][/COLOR]
[COLOR=#000000][FONT=verdana]I want the text-boxes to start out with their own number and count up from there. I’ve got the counting right, but right now they both start at zero. I want text-box 1 to start at “4 500 000” and text-box 2 to start at “2 600 000 000” and go from there.

[/FONT][/COLOR]
[COLOR=#000000][FONT=verdana]I am attaching the .fla - any help appreciated!

[/FONT][/COLOR]
[COLOR=#000000][FONT=verdana]Flash file: http://www.filedropper.com/counterfla[/FONT][/COLOR]

This should do the trick:

//Day-counter

day_txt.text = "4 500 000";
const dayStart:uint = 4500000
var daycounter:Timer = new Timer(100,0);

daycounter.addEventListener(TimerEvent.TIMER, dayCounter);

function dayCounter(event:TimerEvent):void {
	day_txt.text = (daycounter.currentCount + dayStart).toString().public::['toSpaceyFormat']()
}

String.prototype.toSpaceyFormat = function():String {
	return this.split('').reverse().map(function(e, i, a):* { return i % 3 ? e : e + ' ' }).reverse().join('')
}

daycounter.start();

//Year-counter;

year_txt.text = "2 600 000 000";
const yearStart:uint = 2600000000;

var yearcounter:Timer = new Timer(1,0);

yearcounter.addEventListener(TimerEvent.TIMER, yearCounter);

function yearCounter(event:TimerEvent):void {
	year_txt.text = (yearcounter.currentCount + yearStart).toString().public::['toSpaceyFormat']()
}

yearcounter.start();

Thank you so much, Krilnon! I was in a bit of a deadline-squeeze here!