Firefox problems - Post ID 14102
I am redoing a site www.reliancecafe.com . If you click on the Feedback button it will take you to the site I am working on. In IE the movie shows up correctly where the pictures are behind the company logo. However in Firefox the flash movie is blocking the photo. Any ideas on how to remedy this situation? Thanks
Try the following code. You should avoid using spaces in file and folder names, and when you do use them, the spaces should be replaced with "%20" in paths pointing to them. Also keep in mind that IDs can never contain spaces.
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0" id="Reliance_cafe" width="900" height="400">
<param name="movie" value="Reliance%20Cafe.swf">
<param name="quality" value="high">
<param name="loop" value="true">
<param name="wmode" value="opaque">
<embed src="Reliance%20Cafe.swf" wmode="opaque" loop="true" quality="high" width="900" height="400" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed>
</object>
<param name="movie" value="Reliance%20Cafe.swf">
<param name="quality" value="high">
<param name="loop" value="true">
<param name="wmode" value="opaque">
<embed src="Reliance%20Cafe.swf" wmode="opaque" loop="true" quality="high" width="900" height="400" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed>
</object>
Cary,
Whatever was different in the code worked so thank you! I have another flash I am going to put on this site so I will have to compare the two codes to see the difference (unless you want to tell me
Again, thank you!
Whatever was different in the code worked so thank you! I have another flash I am going to put on this site so I will have to compare the two codes to see the difference (unless you want to tell me

Again, thank you!
You had <param name="wmode" value="transparent">.
This param tag code affects IE, but not Firefox, which relies on the code in the embed tag. There you would have wmode="transparent">
Using a value of "opaque" with wmode works better across browsers than using "transparent".
This param tag code affects IE, but not Firefox, which relies on the code in the embed tag. There you would have wmode="transparent">
Using a value of "opaque" with wmode works better across browsers than using "transparent".
Excellent, thanks so much for the help and the info.!
Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.