[F8] preloader question

i have a preloader with 3 frames.

frame 1 has the preloader mc with the actionscript:

Code:
[LEFT]totalBytes = Math.round(getBytesTotal()/1024);

loadedBytes = Math.round(getBytesLoaded()/1024);
percentDone = Math.round((loadedBytes/totalBytes)*100);
if (_root._framesloaded>=_root._totalframes) {
gotoAndPlay(“start”);
}[/LEFT]

the second frame has the mc again and has the actionscript:

Code:
[LEFT]gotoAndPlay(4);[/LEFT]

then the third frame is just blank with the frame label “start” and no actionscript.

[SIZE=5]For my question:[/SIZE]

If i put two dynamic text boxes in the MC with the instance names totalBytes and loadedBytes would they show how many are there are total and how many are loaded?

and what about percentDone?

just wondering before i post my game to a site.

thanks

DC

Change the instance names to whatever you want. They can be named anything.