Hi, I am trying to add wmode: Transparency in my Flowplayer video but cannot figure out to where it should be added. My code is below. Also, here is a link to my test page. Thanks for any help!
<script src="flowplayer-3.0.2.min.js"></script>
<link rel="stylesheet" type="text/css" href="flowplayer.css">
<a class="player" id="fms" style="width: 200px; height: 170px; background-color: #F2EDDD; text-align: center;"><img src="Splash_all_recipes_grilled_steak3.jpg" alt="Play this video" width="200" height="150" /></a>
<script language="JavaScript">
$f("fms", "flowplayer-3.0.2.swf", {
clip: {
url: 'media/All_Recipes/all_recipes_grilled_steak3',
provider: 'akamai',
play: null,
autoPlay: true,
autoBuffering: false
},
plugins: {
akamai: {
url: 'flowplayer.rtmp-3.0.1.swf',
netConnectionUrl: 'rtmp://cp49900.edgefcs.net/ondemand'
},
controls: {
fullscreen: false,
scrubber: true,
mute: true,
volume: true,
time: false,
background: '#F2EDDD url(controlbar_bg.gif)',
timeColor: '#52483D',
durationColor: '#000000',
progressColor: '#ffffff',
progressGradient: 'medium',
bufferColor: '#F2EDDD',
bufferGradient: 'none',
sliderColor: '#ffffff',
sliderGradient: 'none',
buttonColor: '#D7CCC0',
buttonOverColor: '#D7CCC0'
}
}
});
</script>