From: misner51 on
Hi, I am a little new to dreamweaver and am starting up a new site with a flash
element. I have started this out and it works great on my computer when i
preview it, but the flash element isn't showing up when I publish it. When it
loads in the browser it says the page is "Done, but with errors" and when I
click on that it tells me that the problem is in line 12 of my code which is:

AC_FL_RunContent(
'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#
version=9,0,28,0','width','1027','height','53','src','menubar','quality','high',
'pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Vers
ion=ShockwaveFlash','movie','menubar' ); //end AC code

I have also published the swf and the AC_RunActiveContent.js.
I have published the site to
http://www.sectiondesign.com/porcelain/porcelain.html

any help would be great.

Thanks a lot

<!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 http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
</head>

<body>
<p><img src="../homepage-top.png" width="1024" height="175" />
<script type="text/javascript">
AC_FL_RunContent(
'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#
version=9,0,28,0','width','1027','height','53','src','menubar','quality','high',
'pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Vers
ion=ShockwaveFlash','movie','menubar' ); //end AC code
</script>
<noscript>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#ve
rsion=9,0,28,0" width="1027" height="53">
<param name="movie" value="menubar.swf" />
<param name="quality" value="high" />
<embed src="menubar.swf" quality="high"
pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Versio
n=ShockwaveFlash" type="application/x-shockwave-flash" width="1027"
height="53"></embed>
</object>
</noscript>
</p>
</body>
</html>

From: misner51 on
Thanks a million!!!! I don't know why I didn't notice that...I have been playing around with that code forever! So simple. Thanks again!