Tyree
03-04-2008, 01:22 PM
I'm trying to put a simple flash slideshow on a mostly html page (constructed via php). The swf plays fine locally, plays fine if I load it directly in a browser, but not on a web page.
Would someone mind having a look at my code and see if perhaps I am missing something.
I very rarely use flash at all. So, it's very possible I am overlooking something that's quite trivial to a flash pro.
Here's a mock webpage:
http://www.calvarychapelac.com/mock.php
The flash should be over the shiny green buttons on the right.
Here's a direct link to the swf:
http://www.calvarychapelac.com/scripts/slideshow/final.swf
I'm using Dreamweaver which automatically places the call to the 'AC_RunActiveContent.js' file. Which I'm assuming does some browser sniffing or something. Haven't analyzed that code.
Any ideas?
Thanks!!!
For convenience sake...
The embed/odject code:
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','160','height','124','title','Slideshow','src','/scripts/slideshow/final','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','/scripts/slideshow/final' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="160" height="124" title="Slideshow">
<param name="movie" value="/scripts/slideshow/final.swf" />
<param name="quality" value="high" />
<embed src="/scripts/slideshow/final.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="160" height="124"></embed>
</object></noscript>
and the call to the aforementioned DW script:
<script src="/scripts/AC_RunActiveContent.js" type="text/javascript"></script>
Would someone mind having a look at my code and see if perhaps I am missing something.
I very rarely use flash at all. So, it's very possible I am overlooking something that's quite trivial to a flash pro.
Here's a mock webpage:
http://www.calvarychapelac.com/mock.php
The flash should be over the shiny green buttons on the right.
Here's a direct link to the swf:
http://www.calvarychapelac.com/scripts/slideshow/final.swf
I'm using Dreamweaver which automatically places the call to the 'AC_RunActiveContent.js' file. Which I'm assuming does some browser sniffing or something. Haven't analyzed that code.
Any ideas?
Thanks!!!
For convenience sake...
The embed/odject code:
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','160','height','124','title','Slideshow','src','/scripts/slideshow/final','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','/scripts/slideshow/final' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="160" height="124" title="Slideshow">
<param name="movie" value="/scripts/slideshow/final.swf" />
<param name="quality" value="high" />
<embed src="/scripts/slideshow/final.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="160" height="124"></embed>
</object></noscript>
and the call to the aforementioned DW script:
<script src="/scripts/AC_RunActiveContent.js" type="text/javascript"></script>