hello.
i cannot play videos as i did before with your player on my site.
from the version 4.2, i couldn't play anymore.
here is an example of code that doesn't work, why wouldn't? the file variable cannot handle php link with variable?
maybe someone can give me a idea, because i would like to use the latest version of your flv player.
thanks:)
<script type='text/javascript' src='swfobject.js'></script>
<div id='mediaspace'>This text will be replaced</div>
<script type='text/javascript'>
var so = new SWFObject('player-viral.swf','mpl','470','320','9');
so.addParam('allowfullscreen','true');
so.addParam('allowscriptaccess','always');
so.addParam('wmode','opaque');
so.addVariable('file','http://viewclips.net/video1.php?id=faG_o5P6rmE');
so.write('mediaspace');
</script>
so.addVariable('file', encodeURIComponent('http://viewclips.net/video1.php?id=faG_o5P6rmE'));If a URI contains the flashvars stacking characters ( & = ? ), they must be urlencoded either manually or using JavaScript's encodeURIComponent() method.