External mp3 works for me not for others

ok, i have an external mp3 that works perfect on my machine while its on my machine but once i load it to the website, functionality goes away for my soundbar. this code is my top layer.

this.onEnterFrame = function () {
if (stopped!=true) {
myInputSoundDurationText=myInputSound.duration/1000;
myInputSoundPositionText=myInputSound.position/1000;
}
loadedSong=songInput;
//
//Reverse
if (REV==1 && myInputSoundPosition>0) {
_root.myInputSound.stop();
myInputSoundPosition=myInputSoundPosition-.5;
_root.myInputSound.start(myInputSoundPosition,0);
}
revButton.onPress = function () {
REV=1;
myInputSoundPosition=_root.myInputSound.position/1000;
//
}
revButton.onRelease = function () {
REV=0
}
//Fast Forward
if (FF==1 && myInputSound.position<myInputSound.duration) {
_root.myInputSound.stop();
myInputSoundPosition=myInputSoundPosition+.5;
_root.myInputSound.start(myInputSoundPosition,0);
}
FFButton.onPress = function () {
FF=1;
myInputSoundPosition=_root.myInputSound.position/1000;
}
FFButton.onRelease = function () {
FF=0
}

this code is my second layer.

//
myMusic = new Sound(myMusicMc);
myMusic.attachSound("myMusic01");
myMusicVolume=100;
myMusic.setVolume(myMusicVolume);
 
// 

im using macromedia flash mx 2004 without updates.

heres the the website you can view my soundbar at. http://impendingdoom.home.comcast.net
if anyone wants to help ill post the .fla file

what should i do?

Yeah I’ll take a look. Are you sure its not just file size, as it would load quickly localy, but over the net, if the sound file is large, will of course take a while to download first

Post your fla anyway

i having probs loading the fla file. its like 57mb for some reason… shouldnt be that big. and i found out my flash mx is only v6. i had probs with it so i uninstalled it and finally got it to reinstall. my .swf files when published are displayed as rich text documents and open with an “unknown application” when i check to see what it opens with by right clicking on it. so i change the program that it opens with and it opens that time with the prgram but it doesnt save the settings.