Elxis CMS Forum

Extensions => Templates => Topic started by: e-isodos on November 13, 2010, 07:51:42

Title: Flash no showing in IE8
Post by: e-isodos on November 13, 2010, 07:51:42
Hi,
I have inserted a flash in index of my template and it is working perfect in mozilla and chrome but it is not working (white space in the place of flash) in IE 8. The same code ( object options of flash) used in pure html webpage and it works at all three browsers
the code is:

   <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="844" height="317" wmode="opaque" title="Aliki hotel">
                  <param name="movie" value="aliki_hotel_in_symi.swf" />
                  <param name="quality" value="high" />
               <param name="wmode" value="transparent">
                <embed src="../templates/mytemplate/aliki_hotel_in_symi.swf" wmode="opaque" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="844" height="317"></embed></object>

If I remove the classid it works in IE8, Mozilla but not in chrome...

Does anyone know what I am doing wrong?
Title: Re: Flash no showing in IE8
Post by: CREATIVE Options on November 13, 2010, 08:50:15
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="844" height="317" wmode="opaque" title="Aliki hotel">
                  <param name="movie" value="aliki_hotel_in_symi.swf" />
                  <param name="quality" value="high" />
               <param name="wmode" value="transparent">
                <embed src="../templates/mytemplate/aliki_hotel_in_symi.swf" wmode="opaque" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="844" height="317"></embed></object>

You have give relative paths and one is wrong, give absolute paths (http://www.mysite.gr/templates/mytemplate/aliki_hotel_in_symi.swf

Title: Re: Flash no showing in IE8
Post by: e-isodos on November 15, 2010, 06:05:07
Thanks for your answer, the problem was not in the absolute path but in a strange way it is now fixed by rewritting the code.