-1

I have a problem with a menu on joomla 2.5, the sub menu appears under the flash content as the image below

enter image description here

Any body can help?

I am using the below code to ember the swf inside the joomla site

<script type="text/javascript">

    // <![CDATA[        

    var so = new SWFObject("../../ammap/ammap.swf", "ammap", "100%", "100%", "8", "#f2f2f2");

so.addVariable("path", "../../ammap/");

    so.addVariable("data_file", escape("ammap_data.xml"));

so.addVariable("settings_file", escape("ammap_settings.xml"));      

    so.addVariable("preloader_color", "#999999");

    so.write("flashcontent");

    // ]]>

</script>
Peter Elias
  • 307
  • 6
  • 17

1 Answers1

0

It's a z-index issue that's common with Flash content (YouTube, etc.). Try adding

?wmode=transparent

to the end of your source URL(s).

Google Chrome, Flash and z-index wrong behaviour

http://forums.adobe.com/message/4123098

Community
  • 1
  • 1
isherwood
  • 58,414
  • 16
  • 114
  • 157
  • thanks for help, I am using this code to embed the swf with xml data files – Peter Elias Jan 28 '13 at 19:12