Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Why doesn't my swf work in internet explorer

Status
Not open for further replies.

jettisoned

Programmer
Jan 7, 2002
2
US
Im just a hobby flash user and I just added an swf file to my company site and it can only be seen with Netscape. Why would internet explorer not recognize the file info.
Thanks
Ryan Goldade
 
hi jettisoned

Have a look at you HTML source code. You should see something like this:

Code:
<OBJECT classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot;
 codebase=&quot;[URL unfurl="true"]http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0&quot;[/URL]
 WIDTH=500 HEIGHT=250>
<PARAM NAME=movie VALUE=&quot;yourmovie.swf&quot;> 
<PARAM NAME=quality VALUE=high> 
<PARAM NAME=bgcolor VALUE=#FFFFFF> 
<EMBED src=&quot;yourmovie.swf&quot; quality=high bgcolor=#FFFFFF  WIDTH=500 HEIGHT=250 TYPE=&quot;application/x-shockwave-flash&quot; PLUGINSPAGE=&quot;[URL unfurl="true"]http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash&quot;></EMBED>[/URL]
</OBJECT>

Now, check that you have the <OBJECT> tags and the relevant coding within it, making sure that your filename, background color and movie dimensions are correct. This piece of code is the bit which embeds flash in Internet Explorer.

The <EMBED> tags encase the code to embed the flash in Netscape browsers, and it sounds as though that is all you have.

dave
dave@pinkzeppelin.com

^^^^^^^^^^^^^^^^^^^^^​
 
I looked at all the source and it looks like that is all there and functional. When I have the same files on my desktop within a folder and change the source to reflect it everything works fine. Maybe it is a server problem. Thanks for the help
Ryan Goldade
Oregon Mountain Community
60 NW Davis
Portland OR 97223
ryan@e-omc.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top