You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Flowplayer hiding Drop Down Menus on Joomla Created Nov 18, 2009

This thread is solved

Views: 3481     Replies: 9     Last reply Aug 7, 2011  
You must login first before you can use this feature

jameshcoppens

Posts: 22

Registered:
Nov 18, 2009

Flowplayer hiding Drop Down Menus on Joomla

Posted: Nov 18, 2009

When I use flowplayer and then when I go to my javascript enabled drop down menus the drop behind the flowplayer instead of in front of it.

Anyone know if there is a configuration on the joomla administration of the module that will change this?

Edge
Vizmu Media ------------------- http://vizmu.com/

Posts: 576

Registered:
Nov 29, 2008

» Flowplayer hiding Drop Down Menus on Joomla

Posted: Nov 19, 2009

Reply to: Flowplayer hiding Drop Down Menus on Joomla, from jameshcoppens
Generally they don't put anything in the joomla backend regarding player wmode settings. And its usually up to the dev's of such plugins or module's to offer support for such things.

You will have to modify the code used to install the player.
1st you have to set the player swf to wmode: 'transparent',
Then set the z-index of both the id="player" and of the menu id or class.

This is wmode for the player.

<a id="player" style="display:block; width:520px; height:330px;position:relative;z-index:0;"></a>

<script language="JavaScript"> 
flowplayer("player", {wmode: 'transparent', src: "/flowplayer-3.1.5.swf"}, { 
clip: { 
        url: "/your-video.flv",
        scale: 'fit',
        autoPlay: false,
        autoBuffer: false
    },
plugins: { 
    controls: { 
        url: '/flowplayer.controls-3.1.5.swf', 
        backgroundGradient: 'high', 
        timeColor: '#980118', 
        all: true,
        tooltips: { 
            buttons: true, 
            fullscreen: 'Enter fullscreen mode' 
        } 
    } 
}
}); 	
</script> 

After setting that you will need to adjust the z-index of the menu setting it to anything above 0 Eg z-index:10 or something.

jameshcoppens

Posts: 22

Registered:
Nov 18, 2009

» » Flowplayer hiding Drop Down Menus on Joomla

Posted: Nov 19, 2009

Reply to: » Flowplayer hiding Drop Down Menus on Joomla, from edge
I'm a little bit confused as to what both the z-index are and what the wmode is. I am looking in the code of the module and I see a file that I think I can actually add the wmode to but the z-index has to be in the css file right?

Edge
Vizmu Media ------------------- http://vizmu.com/

Posts: 576

Registered:
Nov 29, 2008

» » » Flowplayer hiding Drop Down Menus on Joomla

Posted: Nov 19, 2009

Reply to: » » Flowplayer hiding Drop Down Menus on Joomla, from jameshcoppens
Yes the z-index can be in the css or you can add it to the div style=

wmode- http://kb2.adobe.com/cps/142/tn_14201.html
z-index- http://www.w3schools.com/Css/pr_pos_z-index.asp

marimba1

Posts: 1

Registered:
Mar 17, 2011

Please, could you tell me where the code of the module is?

Posted: Mar 17, 2011

Reply to: » » Flowplayer hiding Drop Down Menus on Joomla, from jameshcoppens
Hello, I'm having same trouble with player hidding my menus in joomla. I'm trying to find what document should I edit to change the wmode of the player. Could you tell me what document is it?

lineae0211

Posts: 4

Registered:
Mar 30, 2011

Flowplayer hiding Drop Down Menus on Joomla

Posted: Mar 30, 2011

Reply to: Please, could you tell me where the code of the module is?, from marimba1
In order to emphasize W3C valid code and lean pages, neither Flash nor JavaScript are generally considered favorable. There are a number of techniques can be used for more visually (suspended) attractive menus, almost exclusively with style sheets (CSS) and limit the use of Javascript.sexo telefonico

Amaris

Posts: 2

Registered:
Dec 2, 2009

» Flowplayer hiding Drop Down Menus on Joomla

Posted: Dec 2, 2009

Reply to: Flowplayer hiding Drop Down Menus on Joomla, from jameshcoppens
I had a lot of trouble with the same issue, and this finally resolved it:


<a href='my_video.flv' id='player'></a>

<script language='javascript'>
   flowplayer(
      'player',
      { src:'/flowplayer/flowplayer-3.1.5.swf',
        wmode: 'opaque' },
      { clip: {
          autoPlay:      false,
          autoBuffering: true  }
      }
   );
</script>

Be very careful how you initialize the player (src before wmode, src and wmode in the same set of braces). Many thanks tohttp://flowplayer.org/forum/2/15206 !

truth1

Posts: 3

Registered:
Mar 29, 2011

» Flowplayer hiding Drop Down Menus on Joomla

Posted: Mar 30, 2011

Reply to: Flowplayer hiding Drop Down Menus on Joomla, from jameshcoppens
If you guys have solution then please help me too!!! :D