This is a message.

Forum user: mutton

Basic information

Registered May 14, 2009
Last login Oct 14, 2009
Forum posts 2
Direct URL http://www.flowplayer.org/forum/users/10783

Latest forum posts

Posts:

Registered:

» Playlist with download link

Posted: Oct 14, 2009

Another solution: In flowplayer.playlist.js, change

els = wrap.children().unbind("click.playlist").bind("click.playlist", function() {

to

els = wrap.find(".yourclass").unbind("click.playlist").bind("click.playlist", function() {

Then only children in .yourclass activate the playlist when clicked, so you can add download links with no problem.

Posts:

Registered:

» Single quote - again!

Posted: Sep 21, 2009

I struggled with this issue for a while and my solution is to replace single quotes with %2527.

' didn't work because of the ampersand.

%27 and u0027 didn't work because they seem to be interpreted as single quotes literally.

%2527 works, although %27 shows up in place of ' when the user saves the file.

For example,

playlist: [	{
	url: "Standard %26 Poor%2527s.flv",
	title: "Standard and Poor?s"
} ]
I still don't know how to get a single quote to show up in the title without breaking Flowplayer, so I've replaced it with a curly apostrophe for the user to see.