(MX) Kilobyte preloader, so simple?

Hi Kirupians, i have a preloader question, yes another preloader question im sorry. I have my preloader set up rightnow to display a loadbar and the load percentage. However, what i would like to do is have the Dynamic text box display, for example:
“56 of 200 kilobytes loaded”

This is my current code:

[AS]bytes_loaded = Math.round(this.getBytesLoaded());
bytes_total = Math.round(this.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
this.loadBar._width = getPercent100;
this.loadText = Math.round(getPercent
100)+"%";
if (bytes_loaded == bytes_total) {
this.gotoAndPlay(3);
}[/AS]

I’m sure this is a very basic question, so mind taking 10 seconds to let me know how? Thanks everyone :slight_smile:

Victor.