Mailing Lists: Apple Mailing Lists
Image of Mac OS face in stamp
Need a way to stop any movie thats playing on a click
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Need a way to stop any movie thats playing on a click



Hey everyone!

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();
}


//Here are my embed tags:

<div id="pLayer0"></div>
<div id="pLayer1"><embed src="song1.mp3" width="310" height="16" name="song1" id="song1" EnableJavaScript="true"></embed></div>
<div id="pLayer2"><embed src="song2.mp3" width="310" height="16" name="song2" id="song2" EnableJavaScript="true"></embed></div>
<div id="pLayer3"><embed src="song3.mp3" width="310" height="16" name="song3" id="song3" EnableJavaScript="true"></embed></div>
<div id="pLayer4"><embed src="song4.mp3" width="310" height="16" name="song4" id="song3" EnableJavaScript="true"></embed></div>



//And here are my links:

<td width="454" height="27" class="musicfont" style="cursor:hand;" onMouseDown="PlayerStop();" onMouseUp="PlayerRestore();PlayerNone ('pLayer0');PlayerBlock('pLayer1');return false;">Song 1</td>
<td width="454" height="27" class="musicfont" style="cursor:hand;" onMouseDown="PlayerStop();" onMouseUp="PlayerRestore();PlayerNone ('pLayer0');PlayerBlock('pLayer2');return false;">Song 2</td>
<td width="454" height="27" class="musicfont" style="cursor:hand;" onMouseDown="PlayerStop();" onMouseUp="PlayerRestore();PlayerNone ('pLayer0');PlayerBlock('pLayer3');return false;">Song 3</td>
<td width="454" height="27" class="musicfont" style="cursor:hand;" onMouseDown="PlayerStop();" onMouseUp="PlayerRestore();PlayerNone ('pLayer0');PlayerBlock('pLayer4');return false;">Song 4</td>



_______________________________________________ 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


Visit the Apple Store online or at retail locations.
1-800-MY-APPLE

Contact Apple | Terms of Use | Privacy Policy

Copyright © 2011 Apple Inc. All rights reserved.