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?