flowplayer plugin error on IE

if you use an Internet Explorer this will not play the video:
http://www.dev.bregler.net/video/1Video.flv.php

this is the javascript error : http://www.bregler.net/backup/flow.png

Please see the Jscript code below which gives the error..
Is it the extra comma after 'buttonOverColor:' ?
Besides that I see nothing wrong.
I use the plugin straight out of the box.

Has anyone come across this ?
As it says in the header only IE has problems with this.

Any idea anyone on how to fix this ?

`

flowplayer("player","/zp-core/zp-extensions/flowplayer3/flowplayer-3.1.5.swf", {
plugins: {
controls: {
backgroundColor: "#110e0e",
backgroundGradient: "none",
autoHide: "never",
timeColor:"#fcfcfc",
durationColor: "#ffffff",
progressColor: "#ffffff",
progressGradient: "low",
bufferColor: "#275577",
bufferGradient: "low",
sliderColor: "#ffffff",
sliderGradient: "low",
buttonColor: "#567890",
buttonOverColor: "#999999",
}
},
canvas: {
backgroundColor: "#000000",
backgroundGradient: "none"
},playlist: [
{
url:"/albums/video/1Video.jpg",
scaling: "scale"
},
{
url:"/albums/video/1Video.flv",
autoPlay: true,
autoBuffering: true,
scaling: "scale"
}
]
});

`

Comments

  • acrylian Administrator, Developer
    It's the comma behind `buttonOverColor: "#999999",` that needs to be removed. This has already been fixed in the nightly build
Sign In or Register to comment.