Menu

menu and applet

Help
2006-12-05
2013-04-16
  • Murugapandian Ramaiah

    if have an applet, the menu hides behind the applet. :(

     
    • Gypsy Rogers

      Gypsy Rogers - 2006-12-05

      There is a trick for dealing with this....

      You have to do two things.....

      First, move your Object code to JS and write it to the document rather then just having it there. This is a work around for IE.

      Like this:
         document.write('');
         document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://downl
      oad.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="791" height="128"> <p
      aram name="wmode" value="opaque"> <param name="movie" value="/content.swf"> <param name="quality" valu
      e="high"> <embed src="/content.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashp
      layer" type="application/x-shockwave-flash" wmode="opaque" width="791" height="128"></embed> </object>
      ');

      Also, like above you need to add the param "wmode" as "opaque" (notice I did this in two places) to the object, this is for firefox/mozilla/netscape.

      good luck

       

Log in to post a comment.