I've searching for hours now, but i can't figure it out.
I'm using flowplayer, but my drop down menu is covered by flowplayer. Probably it can be fixed by using wmode = opaque. But i don't know where I can adjust this.
Can anybody help? :)
I just use the 'default' code:
$output = '';
// Now add the required JavaScript using some configuration options (http://flowplayer.org/documentation/configuration.html).
flowplayer_add('#player', array(
'clip' => array(
'autoPlay' => FALSE,
'linkUrl' => 'http://flowplayer.org',
'scaling' => 'fit'
),
));
echo $output;
My config:
Drupal 6.13
Flowplayer 3.1.1
Comments
Comment #1
robloachHave a demonstration of the problem you're running into?
Comment #2
Plascual commentedHere is what I use to configure my Flowplayer into node content:
Can you tell me if it has any positive impact on the way your player is displayed ?
Comment #3
fishclic commentedI tried this code, but it didnt work for me ...
My drop-down menu is still hidden by the flowplayer.
Any idea how to set the wmode ?
Comment #4
fishclic commentedComment #5
ñull commented+ subscribing
I use this module with bd_video and I have the same issue of menu disappearing behind the video. Why isn't there a config option for this?
Comment #6
ñull commentedThanks to the example in http://drupal.org/node/524364 I could do it myself. Attached three patches that should add this setting.
Comment #7
ñull commentedmoving the long description out of the select box
Comment #8
ñull commentedComment #9
robloachhttp://flowplayer.org/forum/2/15206 ...... Subscribing :-) .
Comment #10
RedTop commentedWonderful patches! This solved this issue for me and it took me just 5 mins. Thanks so much! :)
I can now actually have flowplayer show a movie and use modal comment forms using Popup API at the same time (wmode=opaque). patch -> dev +1 :)
drupal 6.15
flowplayer.module,v 1.2.2.8 2009/09/08 15:09:10 robloach
tested on:
firefox 3.5
IE 8.0
Opera 10.10
Safari 4.0.4
Comment #11
RedTop commentedUnfortunately it doesn't seem to be perfect in the long run.
- the scaling option seems to be preserved, but the dropdwon menu where you get to choose the scaling option always defaults to 'fit to window'
- Most of the times when loading a page with videos flowplayer will not load and just show the loading animation in the top-left corner of the flowplayer window.
Hope you can patch these glitches because I certainly can't do without the wmode option! :(
Comment #12
RedTop commentedDid some more testing.
- Tried to clear cache and reload the videos
- I removed the videos and uploaded them again
- Tried different browsers
The problem appears in all browsers. Videos seem to be ok after they are added. Once another video is added older videos break.
Comment #13
RedTop commentedFor anyone looking for a solution until above glitches are fixed. Here is a solution which requires modding the module itself (i.e. not the best way to do this):
flowplayer.js, Line 87:
Comment #14
jbrown commentedThe description in #7 is wrong:
opaque: the movie hides everything on the page behind it;
When it is opaque, elements can be in front of it.
With Firefox I find that with opaque the mouse pointer cannot change when over the flowplayer.
Comment #15
dellis commented+1 on #13: not nice to do, but it does the job
Comment #16
benoit.borrel commentedIf you just want to apply the #13 hardcoded version, here is the patch.
Comment #17
k3vin commentedI try the patch in #16. When switch back from fullscreen mode the video is black/blank.
Comment #18
jackalope commentedThe patch in #16 works fine for me. Wondering whether this will make it into an updated version of this module. Any plans for updating the D6 module?
Comment #19
bryancasler commentedI created a solution a while back that forces all wmode values to be transparent. #580398: MultiChat gets covered up by flash, <object> and <embed> this might help out. It has some success here #1035570: Embeded media
Comment #20
bryancasler commentedLooks like someone else has gone ahead and updated the code my fix was based off of, you may want to look there instead.
http://www.onlineaspect.com/2009/08/13/javascript_to_fix_wmode_parameter...
Comment #21
brankoc commentedI have been using patches #6 and #7 for a year without a hitch on a production site.
The problems RedTop is reporting seem unrelated. Null's patches use their own form element and their own Drupal variable, as far as I can tell, so it seems unlikely that they somehow 'touch' the scaling code.
Comment #22
lurkerX commentedI know this not the best way, but it worked for me in a pinch. Thanks RedTop!
Comment #23
brankoc commentedComment #24
tamerzg commented#16 worked for me. Any chances this get commited?
Comment #25
omvaishnav commentedThank you very much @RedTop. It worked awesome.. keep it up.
Comment #26
keti-1931 commented#13 working for me in drupal 7 too.....
thanks
Comment #27
damienmckennaNeeds to be rolled into a single patch for D7.
Comment #28
damienmckenna