Elxis CMS Forum

Extensions => Templates => Topic started by: benone on November 08, 2009, 18:50:11

Title: Swf logo file not playing
Post by: benone on November 08, 2009, 18:50:11
Anyone using its-elxis3 template with swf logo? Please help because I can't get mine to play. The following is the code.

<div id="header">
<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" style="width: 400px; height: 148px">
<param name="movie" value="<?php echo $mosConfig_live_site; ?>/templates/its-elxis3/images/logoname.swf"/>
<param name="quality" value="Best"/>
<param name="menu" value="false"/>
<embed src="<?php echo $mosConfig_live_site; ?>/templates/its-elxis3/images/logoname.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="logoname.swf" quality="Best" menu="false" style="width: 400px; height: 148px"/>
</object>      
 <div id="hin">

Same code works fine with the okto template. Many thanks in advance.
Title: Re: Swf logo file not playing
Post by: CREATIVE Options on November 08, 2009, 20:11:19
Replace the
Code: [Select]
<?php echo $mosConfig_live_site?>  with the absolute path (http://www.mysite.com)
Title: Re: Swf logo file not playing
Post by: benone on November 09, 2009, 15:20:04
Hi and thanks for your reply. I was not able to test any further since the website was down (hosting problems). Now it's up and running again.

Excuse me if I misunderstood you, but I placed this and still nothing:


<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" style="width: 400px; height: 148px">
<param name="movie" value="http://www.mysite.com/templates/its-elxis3/images/logoname.swf"/>
<param name="quality" value="Best"/>
<param name="menu" value="false"/>
<embed src="http://www.mysite.com/templates/its-elxis3/images/logoname.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="logoname.swf" quality="Best" menu="false" style="width: 400px; height: 148px"/>
</object>
Title: Re: Swf logo file not playing
Post by: ks-net on November 09, 2009, 16:06:01
<object type=”application/x-shockwave-flash” id="obj1" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"  data=”http://www.mysite.com/templates/its-elxis3/images/logoname.swf” width=”400″ height=”140″>
<param name=”movie” value=”http://www.mysite.com/templates/its-elxis3/images/logoname.swf” />
<param name="quality" value="Best"/>
<param name="menu" value="false"/>
</object>


Title: Re: Swf logo file not playing
Post by: benone on November 09, 2009, 17:25:17
A thousand thanks. I'll try and let you know.