This is a message.

Altering FlashEmbed config (wmode transparent) Created Nov 19, 2008

This thread is solved

Views: 20993     Replies: 8     Last reply Aug 18, 2011  
You must login first before you can use this feature

AlexC
http://tangocms.org

Posts: 33

Registered:
Nov 19, 2008

Altering FlashEmbed config (wmode transparent)

Posted: Nov 19, 2008

Hey,

How do I alter FlashEmbed config, without having to download and use FlashEmbed manually? I need to set the 'wmode' to 'transparent'.

Regards,

Tero
Author of jQuery Tools and this website + JavaScript developer of Flowplayer.

Posts: 1868

Registered:
Nov 16, 2007

» Altering FlashEmbed config (wmode transparent)

Posted: Nov 20, 2008

Reply to: Altering FlashEmbed config (wmode transparent), from AlexC
It's the second argument for flowplayer as follows.


$f("myDiv", {src: '/flowplayer.swf', wmode: 'transparent'}, {
  // flowplayer config
});

theakston

Posts: 5

Registered:
Apr 14, 2008

» » Altering FlashEmbed config (wmode transparent)

Posted: Dec 10, 2008

Reply to: » Altering FlashEmbed config (wmode transparent), from tipiirai
Thanks for the help. I got it in the end. Now works in FF and Safari. I'll keep my fingers crossed for IE!

tsquez

Posts: 1

Registered:
Jul 1, 2010

» » » Altering FlashEmbed config (wmode transparent)

Posted: Jul 1, 2010

Reply to: » » Altering FlashEmbed config (wmode transparent), from theakston
I use this in conversion projects. Most recently in WordPress. But I ran into an issue about the transparency of the player. I tried forever to get the transparency to work, but the only bastard step child that didn't want to play nice was IE.

Of course now I have updated to the newer version of the player and it works beautimous....thanz for the improvements guys. I love this thing.

PSD to HTML

sanmiguel
I blog about destinations in Mexico: San Miguel de Allende | La Manzanilla | Barra de Navidad | San Miguel de Allende

Posts: 1

Registered:
Jul 3, 2010

Thanks for the help

Posted: Jul 3, 2010

Reply to: » Altering FlashEmbed config (wmode transparent), from tipiirai
Thanks! I've been trying to get this working on my blog too. I appreciate the help!

baddjuju

Posts: 13

Registered:
May 2, 2011

Getting WMODE Transparent to work with Autoplay: false

Posted: Jun 2, 2011

Reply to: » Altering FlashEmbed config (wmode transparent), from tipiirai
I am trying to get autoPlay:false to work with the following code.

flowplayer(".myPlayer", {src: "<?php bloginfo ('template_url'); ?>/flowplayer-3.2.7.swf", wmode: 'opaque'});

Sorry about my JavaScript skills being sub par.

haydent

Posts: 18

Registered:
May 4, 2010

» Getting WMODE Transparent to work with Autoplay: false

Posted: Aug 18, 2011

Reply to: Getting WMODE Transparent to work with Autoplay: false, from baddjuju
just a little note on wmode cpu usage
http://flowplayer.org/forum/2/72823

@baddjuju: try:

flowplayer(".myPlayer", {src: "<?php bloginfo ('template_url'); ?>/flowplayer-3.2.7.swf", wmode: 'opaque'},
{
clip: {autoPlay: false}

});