Version 4.3.132


Simple design,
basic setup

  player.swf     41.5 KB (42,566 bytes)
  swfobject.js     6.72 KB (6,887 bytes)
  vinovataliya.html (IE9 Save target as... saves it only as .htm, so add L for accuracy!)
  vinovataliya.flv

  Code for the HTML file:

<script type="text/javascript" src="swfobject.js"></script>

<div id="player">This text will be replaced by the FLV player screen generated by the JavaScript below.</div>

<script type="text/javascript">
var so = new SWFObject('player.swf','mpl','450','360','8');
so.addParam('allowscriptaccess','always');
so.addParam('allowfullscreen','true');
so.addVariable('autostart','true');
so.addVariable('width','450');
so.addVariable('height','360');
so.addVariable('file','vinovataliya.flv');
so.write('player');
</script>





3 clips played one
after the other

  player.swf     41.5 KB (42,566 bytes)
  swfobject.js     6.72 KB (6,887 bytes)
  threeclips.html (IE9 Save target as... saves it only as .htm, so add L for accuracy!)
  playlist.xml
  1.flv
  2.flv
  3.flv

  Code for the HTML file:

<script type="text/javascript" src="swfobject.js"></script>

<div id="player">This text will be replaced by the FLV player screen generated by the JavaScript below.</div>

<script type="text/javascript">
var so = new SWFObject('player.swf','mpl','450','360','8');
so.addParam('allowscriptaccess','always');
so.addParam('allowfullscreen','true');
so.addVariable('autostart','true');
so.addVariable('width','450');
so.addVariable('height','360');
so.addVariable('file','playlist.xml');
so.addVariable('linkfromdisplay','true');
so.addVariable('searchbar','false');
so.addVariable('repeat','list');
so.addVariable('shuffle','false');
so.write('player');
</script>

  Code for the XML file:

<playlist version="1" xmlns="http://xspf.org/ns/0/">

<trackList>

<track><location>1.flv</location></track>
<track><location>2.flv</location></track>
<track><location>3.flv</location></track>

</trackList>

</playlist>