Hi there!
I was wondering if it's possible to use this player to post a different video everyday. I wanted the player to automatically change the videos stored in my server.
For example: 01/01/2001 plays video1.flv 02/01/2001 plays video2.flv
Any ideias for this?
Thanks in advance

Create a file URI before your SWFObject JavaScript code, then use that URI in your SWFObject code.
<script type="text/javascript">var file = 'http://www.domain.com/path/video' + new Date().getDate() + '.flv';
var flashvars =
{
'file': encodeURIComponent(file),
'image': encodeURIComponent('http://www.domain.com/path/image.jpg'),
'playlist': 'bottom',
'playlistsize': '120',
>>>> the rest of your JavaScript <<<<
</script>