So...I've got an embedded object that looks like this:
<div id="vid">
<script type="text/javascript">
var cnt = document.getElementById("vid");
var src = 'wmvplayer.xaml';
var cfg = {
file:'images/photostory.wmv',
height:'240',
width:'360',
windowless:'true'
};
var ply = new jeroenwijering.Player(cnt,src,cfg);
so1.addParam('allowfullscreen','true');
so1.addParam('allowscriptaccess','always');
so1.addVariable('file','images/photostory.wmv');
so1.write('vid');
</script>
</div>
..with all the right scripts in the head and everything. The player loads just fine, all the functionality is there, but the video just wont play. It seems like it starts to, but nah...
Thanks, in advance, for any help.