I have the flow.playlist.js working (almost). The thumbnails call the videos. My questions are as follows.
1. I would like to use the FlowPlayerLight.swf that is the 'lightest' skin of the players. Right now I have it working with the FlowPlayerWhite.swf and none of the config properties are being rendered. (hideMenu, showControls, etc.)
2. The first click, whether it be on the player image placeholder or one of the thumbnails, renders an empty player. Then when you click on a different thumbnail, the video loads right up and works correctly.
here is the test url...
http://wdyou.com/people/careers/peopleVideoPlaylist.php
Any Suggestions?
Thanks,
Shawn
here is my js code that
here is my js code that isn't working. the ease and showFullScreenButton are still being rendered. Ideally, I would use FlowPlayerLight.swf but it doesn't seem to work when I try it.
$(function() {
$("#playlist").playlist( "FlowPlayerWhite.swf", {
showVolumeSlider: false,
controlsOverVideo: 'ease',
controlBarBackgroundColor: -1,
googleAnalyticsPrefix: 'peoplevideo',
showFullScreenButton: false
},
{player:'#player', loop:true});
});