Hello,

At the following url http://cascadestage.pomona.edu/admissions/discover-more/pomona-live.aspx) I have a playlist implementation that is almost exactly like the examples on flowplayer.org

Please help! The only difference is that I am enclosing the js in a window.onload since I don't load my jQuery till before the closing body tag. Any help would be GREATLY appreciated...thanks a bunch.


<div class="internal-fp">
<!-- player container and a splash image (play button) --> 
    <a style="display: block;" id="flowPlayer" class="player"> 
        <img src="/render/file.act?path=/images/internal/home/explorations-splash.jpg" alt="flowplayer" /> 
    </a>
<div class="fPClips"><a href="${url}"><img src="${tn}" alt="thumbnail" />
<span class="vid-title">${title}, ${time}</span>
</a></div>
<script type="text/javascript"> window.onload = function() {

         $f("flowPlayer", "/flash/flowplayer.3.1.5.swf", { 

	// clip properties common to all playlist entries 
	clip: {
            // baseUrl: "/admissions/discover-more/videos", 
	    scaling: "fit" 
	    }, 

	// our playlist 
	playlist: [ 
	    { 
	        url: "/admissions/discover-more/videos/campus-tour.flv", 
		title: "Walking Backwards: Tour Pomona College",
                time: "00",
                tn: "/test.jpg"
	    },
            {
                url: "/admissions/discover-more/videos/organic-farm.flv",
                title: "Organic Farm: Student's Green Project",
                time: "00",
                tn: "/test.jpg"
            },
            { 
	        url: "/admissions/discover-more/videos/ski-beach.flv", 
		title: "Ski-beach Day: Only in Southern California", 
                time: "00",
                tn: "/test.jpg"
            },     
	    { 
		url: "/admissions/discover-more/videos/snack.flv", 
		title: "Snack: Pomona's Late Night Nosh",
                time: "00",
                tn: "/test.jpg"
	    },
            { 
	        url: "/admissions/discover-more/videos/volleyball.flv", 
		title: "Beach Volleyball: Right Outside Your Dormroom",
                time: "00",
                tn: "/test.jpg"
	    }
	]
	
   });					

    $f("flowPlayer").playlist("div.fPClips:first", {loop:true});

};

</script>