I have a flash jukebox I want to insert into my page. The code is generated straight from SWISH Jukebox.
I've got two test pages up.
In this page generated by SWISH Jukebox, the music plays.
<html>
<head>
<title></title>
</head>
<body>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="60" height="15">
<param name="movie" value="music-home.swf">
<param name="quality" value="high">
<param name="bgcolor" value="#ffffff">
<embed src="music-home.swf" quality="high"
type="application/x-shockwave-flash"
width="60" height="15"
bgcolor="#ffffff"
>
</embed>
</object>
</body>
</html>
When I insert the code into my Expression Web page like this, the flash is visible, but there is no sound. I've tried inserting the flash with Expression Web into my W3C page by using the insert>media>flash function and that did not work either.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Untitled 1</title>
</head>
<body>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" height="15" width="60">
<param name="movie" value="music-home.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<embed bgcolor="#ffffff" height="15" quality="high" src="music-home.swf" type="application/x-shockwave-flash" width="60">
</embed>
</object>
</body>
</html>
Does this lack of sound have something to do with the W3C doc type? I'm at a loss. Thanks in advance.