Log in

View Full Version : enabling web site to play flash banners



hallackt
03-20-2009, 07:03 PM
Hi, I’m trying to add flash banners to a web site that doesn’t have the capability to play flash drives. Does anyone have the code of a .swf file so that I can place in the main directory enabling my website to play the flash banner? You may email me at hallackt@yahoo.com with any help that you may have for me it would be greatly appreciated.

Moo Baa
03-23-2009, 09:28 AM
This is the code dreamweaver gives :

add to the header:- <script src="DWConfiguration/ActiveContent/IncludeFiles/AC_RunActiveContent.js" type="text/javascript"></script>

<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','32','height','32','title','your text here','src','file:document path here','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','file:document path here' ); //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="32" height="32" title="your text here">
<param name="movie" value="file:document path here" />
<param name="quality" value="high" />
<embed src="file:document path here" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="32" height="32"></embed>
</object></noscript>

Seems a bit bloated but does the trick