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 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: Murray *ACE* on
Did you upload this -

<script src="Scripts/AC_RunActiveContent.js"
type="text/javascript"></script>

??


--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
==================


"misner51" <webforumsuser(a)macromedia.com> wrote in message
news:fvoga6$2vt$1(a)forums.macromedia.com...
> 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 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>
>