PDA

View Full Version : Can't anyone help on no mp3 play in Netscape?


peamom
09-05-2002, 12:03 AM
I've posted twice to this forum and not one answer. I guess I must be doing something wrong.

I coded a website to play an mp3 song and I can't get it to play in Netscape. Netscape says I need a plug in but won't tell me what. I tried adding the mp3 file type to Netscape Preferences, Application Helpers, with MIME File type "audio/mpeg" and realplayer.exe as the application to play it (also tried mediaplayer). Get same result as jst described no matter what I do.

Here is the code for the music. Please someone help if you can.

<!-- saved from url=(0022)http://internet.e-mail -->
<html>
<head>
<title>Angels of Freedom</title>

<SCRIPT LANGUAGE="JavaScript">
<!--
if (navigator.appName == "Microsoft Internet Explorer")
document.writeln ('<BGSOUND SRC="Angels of Freedom.MP3" LOOP=1>');
else
document.writeln ('<EMBED SRC="Angels of Freedom.MP3" TYPE="audio/mpeg" AUTOSTART=TRUE HIDDEN=TRUE LOOP="FALSE" STOP=FALSE VOLUME=100 PLAY=TRUE><P>');

var image1=new Image()
image1.src="BRIAN.JPG"
var image2=new Image()
image2.src="Wedding.jpg"
var image3=new Image()
image3.src="Weddingcake.jpg"
var image4=new Image()
image4.src="BrianwBaby.jpg"
var image5=new Image()
image5.src="BrianBeach.jpg"

// -->
</SCRIPT>
<NOSCRIPT>
<BGSOUND SRC="Angels of Freedom.MP3">
</NOSCRIPT>
</head>