I'm super new at javascript, and I'm trying to embed mp3's in
swappable div layers in my site, but I'm having trouble getting them
to stop playing when you play the next one. It seems to work pretty
well in FireFox, but Safari not so much. I'm sure there's probably a
better way to do it. I tried SetURL instead of all this but it didn't
do anything at all. Thanks a ton if you can help me!
//Here's my javascript:
function PlayerRestore(){
document.getElementById("pLayer1").style.display="none";
document.getElementById("pLayer2").style.display="none";
document.getElementById("pLayer3").style.display="none";
document.getElementById("pLayer4").style.display="none";
document.getElementById("pLayer0").style.display="block";
}
function PlayerNone(obj){
document.getElementById(obj).style.display="none";
}
function PlayerBlock(obj){
document.getElementById(obj).style.display="block";
}
function PlayerStop(song){
document.song1.Stop();
document.song2.Stop();
document.song3.Stop();
document.song4.Stop();
}
_______________________________________________
Do not post admin requests to the list. They will be ignored.
QuickTime-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden