Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, see this article.

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

i have embede a flash swf file in a web page that works fine in other browsers but not in Fire foz plz help.

  • 1 reply
  • 2 have this problem
  • 4 views
  • Last reply by cor-el

more options

Following is the code:


<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="570" height="25" id="tech" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="../Flash/Menu/download.swf" />
<param name="quality" value="high" />
<param name="base" value="../Flash/Menu" />
<embed src="../Flash/Menu/download.swf" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" allowScriptAccess="sameDomain" movie="../Flash/Menu/download.swf" quality="high" width="570" height="25" name="tech" align="middle" allowscriptaccess="sameDomain" base="..\Flash\Menu" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>  

where downlod.swf is a flash file in a directory named flash the code works fine in all other browsers but not in Fire fox plz help .

Following is the code: ------------------------------------------------ <pre><nowiki><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="570" height="25" id="tech" align="middle"> <param name="allowScriptAccess" value="sameDomain" /> <param name="movie" value="../Flash/Menu/download.swf" /> <param name="quality" value="high" /> <param name="base" value="../Flash/Menu" /> <embed src="../Flash/Menu/download.swf" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" allowScriptAccess="sameDomain" movie="../Flash/Menu/download.swf" quality="high" width="570" height="25" name="tech" align="middle" allowscriptaccess="sameDomain" base="..\Flash\Menu" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> </nowiki></pre> ------------------------------------------------------------------ where downlod.swf is a flash file in a directory named flash the code works fine in all other browsers but not in Fire fox plz help .

Modified by cor-el

All Replies (1)

more options

Looks like it is caused by the backslashes in base="..\Flash\Menu" in the embed.
Change them to forward slashes: base="../Flash/Menu" like you see in the object: <param name="base" value="../Flash/Menu" />