Elxis CMS Forum
Extensions => Templates => Topic started 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.
-
Replace the
<?php echo $mosConfig_live_site; ?>
with the absolute path (http://www.mysite.com)
-
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>
-
<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>
-
A thousand thanks. I'll try and let you know.