I've googled and searched for solutions to my error, but have not been able to fix it, so I am hoping someone can help me.
My problem is that when I try include the analytics plugin I get an initialization error. When I remove the analytics plugin the code works fine.
My code is below:
<script type="text/javascript">
flowplayer("player", { src: http://www.mysite.com/flowplayer/flowplayer.commercial-3.2.5.swf", wmode: 'opaque'}, {
key: '#$mykey',
clip: {
autoPlay: true,
provider: 'rtmp',
autoBuffering: true,
bufferLength: 5
},
plugins: {
gatracker: {
url: 'http://www.mysite.com/flowplayer/flowplayer.analytics-3.2.2.swf',
events: {
all: true
},
debug: true,
accountId: 'UA-1111115-1'
},
rtmp: {
url: 'http://www.mysite.com/flowplayer/flowplayer.rtmp-3.2.3.swf',
netConnectionUrl: 'rtmp://s1wn2aupjx7sga.cloudfront.net/cfx/st'
},
htmlContent: {
url: 'http://www.mysite.com/flowplayer/flowplayer.content-3.2.0.swf',
stylesheet: 'http://www.mysite.com/css/flowplayer_content.css',
top: 23,
left: 30,
width: 394,
height: 51,
opacity: 0.0,
border: 0,
backgroundGradient: 'none',
backgroundColor: 'transparent',
backgroundImage: 'url(/img/show/video-overlay.png)',
borderRadius: 0,
html: 'Get your team?s preview every Friday!'
}
}
}).ipad();
</script>
My problem is that when I try include the analytics plugin I get an initialization error. When I remove the analytics plugin the code works fine.
My code is below:
<script type="text/javascript">
flowplayer("player", { src: http://www.mysite.com/flowplayer/flowplayer.commercial-3.2.5.swf", wmode: 'opaque'}, {
key: '#$mykey',
clip: {
autoPlay: true,
provider: 'rtmp',
autoBuffering: true,
bufferLength: 5
},
plugins: {
gatracker: {
url: 'http://www.mysite.com/flowplayer/flowplayer.analytics-3.2.2.swf',
events: {
all: true
},
debug: true,
accountId: 'UA-1111115-1'
},
rtmp: {
url: 'http://www.mysite.com/flowplayer/flowplayer.rtmp-3.2.3.swf',
netConnectionUrl: 'rtmp://s1wn2aupjx7sga.cloudfront.net/cfx/st'
},
htmlContent: {
url: 'http://www.mysite.com/flowplayer/flowplayer.content-3.2.0.swf',
stylesheet: 'http://www.mysite.com/css/flowplayer_content.css',
top: 23,
left: 30,
width: 394,
height: 51,
opacity: 0.0,
border: 0,
backgroundGradient: 'none',
backgroundColor: 'transparent',
backgroundImage: 'url(/img/show/video-overlay.png)',
borderRadius: 0,
html: 'Get your team?s preview every Friday!'
}
}
}).ipad();
</script>