0
Hi Germi,
The JWplayer covers other items on my page when they become active, like dropdowns. This is a common flash issue as it goes on top for display, and usually setting:
and
In embed works
Where is the file that I need to change this in?
Thanks.
The JWplayer covers other items on my page when they become active, like dropdowns. This is a common flash issue as it goes on top for display, and usually setting:
[greater than]param name="wmode" value="transparent"[less than]
and
wmode="transparent"
In embed works
Where is the file that I need to change this in?
Thanks.
Responses (3)
-
Accepted Answer
0Ok, I got this fixed as well. In the file
/modules/mod_muscol_jwplayer/helper.php
Fine the two code sections around lines 85, 179 (Slightly shifted by other changes) that are similar and do the following change:
var s".$unique_id.";
function initPlayer(){
s".$unique_id." = new SWFObject('".$player."', ...
s".$unique_id.".addParam('allowfullscreen','true');
s".$unique_id.".addParam('allowscriptaccess','always'); /* After this
line */
s".$unique_id.".addParam('wmode','transparent'); /* Add this
line */
s".$unique.addParam('flashvars', ... /* Before this line */
s".$unique_id.".write('jwplayer_wrapper');
}
Hope this helps someone else as well. -
Accepted Answer
Your Reply
Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »