Relatively simple maybe -
i built a basic playlist player; i want it to resize/rescale to the browser dimensions automatically upon user resizing the browser.
I am trying to treat it the same as a swf file, such that i know how to make a swf file auto resize/rescale in standard html, but in the case of the playlist, i cant seem to understand how to do it, any ideas? i've searched around in the forum for a couple of days. cheers
this is the playlist file
"http://fakeshop.com/video_archive.html"
and current code for the playlist
<div id="container">Loading the player...</div>
<script type="text/javascript">
jwplayer("container").setup({
flashplayer: "http://fakeshop.com/jwplayer/player.swf",
'id': 'playerID',
'playlistfile': 'http://fakeshop.com/jwplayer/video_archivenotyoutube.xml',
"playlist.position": "right","controlbar.position": "bottom",
"controlbar.idlehide": "true", "stretching" : "fill","repeat": "list",
"autostart": "true",
"playlist.size": 103,
height: 660,
width: 1200
});
</script>
You can do this with - http://fitvidsjs.com/
The same file that comes with the plugin has a JW Player install on the bottom of the page.