On my site I am using http streaming but the position of the scrub bar and buffering display seem out of synch. The scrub icon also stops short before the end of the timeline.
Preview at: http://www.angling.tv/new.php
Code to include player:
function createplayer(theFile, go, imagename) {
// Version check based upon the values entered above in "Globals"
if (hasReqestedVersion) {
if (videoPlayer == '')
{
videoPlayer = 1;
var s = new SWFObject("player4_3.swf","single","464","382","9","#192e66");
s.addVariable("screencolor","#000000");
s.addParam("allowfullscreen","true");
s.addVariable("fullscreen","true");
s.addParam('menu','false');
s.addVariable("abouttext","About Angling tv");
s.addVariable("aboutlink","http://www.angling.tv");
s.addParam("flashvars","skin=snel/snel.swfℑ="+imagename+"&file="+theFile+"&streamer=xmoov.php");
s.addVariable("width","464");
s.addVariable("wmode","transparent");
s.addVariable("height","382");
if (go) { s.addVariable("autostart","true"); }
s.write("mediaspace");
}
else
{
Any ideas greatly appreciated.
Thanks

function createplayer(theFile, go, imagename){
// Version check based upon the values entered above in "Globals"
if (hasReqestedVersion)
{
if (videoPlayer === '')
{
videoPlayer = 1;
var s = new SWFObject('player4_3.swf', 'single', '464', '382', '9.0.124', '#192E66');
s.addParam('allowscriptaccess', 'always');
s.addParam('allowfullscreen', 'true');
//s.addParam('wmode', 'transparent'); // don't use unless you are absoutely certain that you need 'transparent'
s.addParam('menu', 'false');
s.addVariable('screencolor', '000000');
s.addVariable('abouttext', 'About Angling tv');
s.addVariable('aboutlink', 'http://www.angling.tv');
s.addVariable('skin', 'snel/snel');
s.addVariable('image', imagename');
s.addVariable('file', theFile');
s.addVariable('streamer', 'xmoov.php');
s.addVariable('id', 'single');
if (go)
{
s.addVariable('autostart', 'true');
}
s.write('mediaspace');
}
else
{