Hi guys,
I'm still having trouble connecting to a url with extra parameters. Any suggestions would be most appreciated. I'm trying to connect to this video:
http://simi-s-00.vo.llnwd.net/d1/aloneamong.flv?h=b739f00e0ca4cc0fcf03c684f4acac62
I've tried the code:
--------------------------------
<script type="text/javascript">
var s1 = new SWFObject("flvplayer.swf","single","400","300","7");
s1.addParam("allowfullscreen","true");
s1.addVariable("file","http://simi-s-00.vo.llnwd.net/d1/aloneamong.flv?h=b739f00e0ca4cc0fcf03c684f4acac62");
s1.addVariable("image","http://simi.vo.llnwd.net/d1/content/T071906104.jpg");
s1.write("player1");
</script>
---------------------------
Also tried url encoding the url however the remote server (not ours) rejects the url encoded string:
http://simi-s-00.vo.llnwd.net/d1/aloneamong.flv%3Fh%3Db739f00e0ca4cc0fcf03c684f4acac62
Any further suggestions?
cheers
Andrew

You should indeed use URLEncoded values. The player will de-encode them. The values are:
? » %3F
= » %3D
& » %26