Music will not play in FireFox

W

wyzguy

My web site, www.madisonwest54.com has the school song embedded as an
MP3 file in Page Properties on the home page. It plays fine in
Internet Explorer, but not in Firefox. Even when I open the home page
from my local drive in FireFox I get nothing.

Any ideas why this is happening?

Thanks
 
T

Tom Willett

FF doesn't support the bgsound tag. It's IE only.
--
===
Tom Willett
Microsoft MVP - FrontPage
---
FrontPage Support:
http://www.frontpagemvps.com/
===

| My web site, www.madisonwest54.com has the school song embedded as an
| MP3 file in Page Properties on the home page. It plays fine in
| Internet Explorer, but not in Firefox. Even when I open the home page
| from my local drive in FireFox I get nothing.
|
| Any ideas why this is happening?
|
| Thanks
|
 
T

Thomas A. Rowe

Have you configured FireFox on to handle specific file types, such as .mp3 under Content | File
Types?

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage

http://www.Ecom-Data.com
==============================================
 
S

Steve Easton

Us the following script to play a background sound in FF:

<!-- START SOUND CODE, DELETE TO REMOVE -->
<script language="JavaScript" type="text/javascript">
if (navigator.appName == "Microsoft Internet Explorer") {
document.write('<bgsound src="yourfile.wav" LOOP="false">');
}
else {
document.write('<embed type="application/x-mplayer2"
pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" Name="MediaPlayer"
src="yourfile.wav" AutoStart="true" ShowStatusBar="0" ShowControls="0" ShowDisplay="0"
volume="1" HEIGHT="1" WIDTH="1" loop="false"><br>');
}
// End -->
</script>
<!-- END SOUND CODE -->

Change yourfile.wav to the actual name of the file.

--

Steve Easton
Microsoft MVP FrontPage
FP Cleaner
http://www.95isalive.com/fixes/fpclean.htm
Hit Me FP
http://www.95isalive.com/fixes/HitMeFP.htm
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top