I have been pulling my teeth out since i am new to this stuff.
I read all docs on configuring this but NONE of the code examples look like my code I got from your SIMPLE PLAYLIST example page.
Is there a place in one of the JS files that has the items I can edit?
Here is my code:
====================
// setup playlist
$(function() {
$("#playlist").playlist("FlowPlayerDark.swf", {initialScale:'scale'}, {loop:true});
});
=====================
I love this and will buy it if I get help :) I work for a church with membership of 15k.
Thanks
L
player configuration in the flow.playlist tool
The second argument to the playlist() function is the configuration for the player. You can put any of the configuration options listed in our player configuration documentation into the 2nd argument. For example if I want to make it to send statistics to Google Analytics:
$("#playlist").playlist("FlowPlayerDark.swf", {initialScale:'scale', googleAnalyticsPrefix: 'flowplayer'}, {loop:true});
The 3rd parameter takes options specific to the flow.playlist tool.