Incorp the loading of an mp3 on the preloader

For example purposes i am using the following mp3, which i have loading but the webvistors don’t know wats going on because there is no loading bar.
my_sound = new Sound(this);
my_sound.loadSound(“http://www.glitzentertainment.com/glitinc/documents/13.CWhisky-HQ-MPThaWizzard-NoProblems2.mp3”, true);

I tried playing around with the code but i was unsucessful.
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);
}

And i have seen the tutorials already,but some how is it possible to add the mp3 to load up on the preloader as file and after it has completed downloading the mp3 to play automatically.

You have to make a loadBar and place it on your stage, that’s all

no no no that’s not what i mean’t i mean it loads up like a audio player.
Example of this is some kind of preloading progress bar within the audio player to download the mp3 and once it finishes it plays. Please view attachment but the preloader is not working wat is happen… :*(