I have this banner file called baner120.swf now I can upload it to my website for hosting, but what would I insert into the ebay auction template? If anybody could help it would be appreciated. Thanks! I have dreamweaver and the code below is what it takes to insert the banner into a regular website. <object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="500" height="100"> <param name="movie" value="banner120.swf"> <param name="quality" value="high"> <embed src="banner120.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="500" height="100"></embed> </object>
try putting your full url into the embed/param name="movie" tags. for example: <object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="500" height="100"> <param name="movie" value="http://yourwebsite.com/banner120.swf"> <param name="quality" value="high"> <embed src="http://yourwebsite.com/banner120.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="500" height="100"></embed> </object>