Page 1 of 1

Imagevue into HTML works on Firefox not on IE

Posted: 02 Oct 2007, 10:35
by majid
Hi,

I integrated imagevue in my html page and it works well on firefox but I can't make it works on IE :

http://www.myguest.ca/guest/gallery.php

This is my code :
Code
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="580" height="500"
param name="menu" value="true"
param name="movie" value="http://www.myguest.ca/guest/gallery/imagevue.swf"
param name="quality" value="high"
param name="BGCOLOR" value="#FFFFFF"
param value="configfile=config.ini&globalpath=gallery/" name="FLASHVARS"


span class="MsoNormal" style="margin:0cm;margin-bottom:.0001pt;
text-align:center"
<embed> </embed></object> 
Does anyone can help me ?

Posted: 02 Oct 2007, 12:21
by mjau-mjau
There is a tag missing in your code:
Code
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="580" height="500"
...should be:
Code
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="580" height="500">
See the > tag at the end?

Posted: 02 Oct 2007, 12:49
by majid
this is the new code but it still not working on IE...
Code
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="580" height="500">

<embed src="http://www.myguest.ca/guest/gallery/imagevue.swf" width="580" height="500" menu="false" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" bgcolor="#FFFFFF" flashvars="configfile=config.ini&globalpath=gallery/"> </embed></object>

Posted: 02 Oct 2007, 14:26
by mjau-mjau
In your 'new' code, you are missing <param> tags which are used in IE to set the file path for the swf amongst other things:
Code
<param name="movie" value="file.swf" />
... check the default code I have:
Code
<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="550" height="400">
  <param name="movie" value="file.swf" />
  <param name="quality" value="high" />
  <embed src="file.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="550" height="400"></embed>
</object>
Why don't you use Dreamweaver or another program to embed the SWF? It will insert the correct code for you ...

Posted: 02 Oct 2007, 20:19
by majid
Thank you it's working perfectly :)