Anyone know how to add a flashvar for the snapshot plugin, watermark image and a skin? I've done it in Wordpress, it's easy with the WPlugin, But not sure how to add in this
HTML Code:
<script type='text/javascript' src='/video/swfobject.js'></script>
<div id='mediaspace'></div>
<script type='text/javascript' src='flv/swfobject.js'></script>
<div id='media_{param}'>This text will be replaced</div>
<script type='text/javascript'>
var so = new SWFObject('flv/player.swf','mpl','470','320','9');
so.addParam('allowfullscreen','true');
so.addParam('allowscriptaccess','always');
so.addParam('wmode','opaque');
so.addVariable('file','{param}');
so.addVariable('backcolor','CCCCFF');
so.addVariable('frontcolor','000000');
so.addVariable('lightcolor','000000');
so.addVariable('screencolor','000000');
so.write('media_{param}');
</script>