You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Playlist with download link Created Feb 20, 2009

This thread is solved

Views: 4522     Replies: 12     Last reply Oct 30, 2010  
You must login first before you can use this feature

dougsbastos

Posts: 5

Registered:
Feb 20, 2009

Playlist with download link

Posted: Feb 20, 2009

Hi!!!
How i made a playlist with the download option?

<playlist>
<see> <download>
<see> <download>
<see> <download>
<see> <download>
<see> <download>
</playlist>

The plugin take all href's. I need take only <see> for the list. The <download> option must be on side of <see>.

Thks!

Liam Gooding
Custom swf skins, custom swf plugins, custom JS plugins, video CMS - http://goodingsmedia.com

Posts: 352

Registered:
Dec 16, 2008

» Playlist with download link

Posted: Feb 21, 2009

Reply to: Playlist with download link, from dougsbastos
Hi Doug,

Please check through the playlist demos to get started.

If you have no programmng/scripting experience at all then please use the marketplace to request paid development work.

It's unreasonable to expect a forum member to just create your entire setup. This forum is intended so that people can help each other correct, tweak and adjust their code.

Flowplayer.org also supply support items which cover exactly this. Refer to your accounts page

dougsbastos

Posts: 5

Registered:
Feb 20, 2009

» » Playlist with download link

Posted: Feb 24, 2009

Reply to: » Playlist with download link, from LiamGooding
I'm using the playlist plugin. I found the plugin might have some fine adjustment to correct this "problem". I found someone had already gone through this, i do not want anybody doing anything for me. The plugin picks up everything that is inside the href playlist and leaves as if it were using a video link.
But no problem. I will do my own. If someone wants to contact me.
No more!
Doug

Robi

Posts: 37

Registered:
Jan 22, 2009

» Playlist with download link

Posted: Mar 4, 2009

Reply to: Playlist with download link, from dougsbastos
Yeah - I have been wondering this myself

Everything within the playlist is treated as a link to the video as it is sat within an 'a' tag

I was wondering how you could add a link to download each video within the playlist itself?

I am guessing it cannot be done??

Has anyone else managed to do this?

dougsbastos

Posts: 5

Registered:
Feb 20, 2009

» » Playlist with download link

Posted: Mar 4, 2009

Reply to: » Playlist with download link, from paraleadogg
Hi Robi!
I made my own list and pass the video using a function of API $f().play(clip)

Se the code below:


<script>$(document).ready(function() {
			flowplayer("player", "/resources/all/js/flowplayer/flowplayer-3.0.7.swf")
 
			$(".visualClip").click( function() {
				clipLink = $(this).attr("href");
				$f().play(clipLink);
				return false;					
			});
			
			$f().onBeforeClick(function() { 
			// ignore 2+ clicks, which happens if Flashblock is installed 
			if (this.alreadyCalledBeforeClick) 
				return false; 
			this.alreadyCalledBeforeClick = true; 
			return true;}); 
				
		});</script>

If you want use the playlist plugin, you have made a changes to work correct.

Regards,
Doug

Robi

Posts: 37

Registered:
Jan 22, 2009

» » » Playlist with download link

Posted: Mar 4, 2009

Reply to: » » Playlist with download link, from dougsbastos
Hi Doug,

Cool thanks.

Do you have a link to a working demo?

Wouldnt mind taking a look

Thanks

dougsbastos

Posts: 5

Registered:
Feb 20, 2009

» » » » Playlist with download link

Posted: Mar 5, 2009

Reply to: » » » Playlist with download link, from paraleadogg
Hi Robi!
Here:http://www.iplenix.com/ms/showImage.
See ya!

Robi

Posts: 37

Registered:
Jan 22, 2009

» » » » » Playlist with download link

Posted: Mar 5, 2009

Reply to: » » » » Playlist with download link, from dougsbastos
Hi Doug,

Link doesn't work??

dougsbastos

Posts: 5

Registered:
Feb 20, 2009

» » » » » » Playlist with download link

Posted: Mar 5, 2009

Reply to: » » » » » Playlist with download link, from paraleadogg
Ohhh hehehe!
There are a dot in end of line.
Try again:
http://www.iplenix.com/ms/showImage

See ya!

bradcapo1

Posts: 1

Registered:
Jul 23, 2009

» Playlist with download link

Posted: Jul 23, 2009

Reply to: Playlist with download link, from dougsbastos
Thanks for sharing this useful information. It's great.

[urlhttp://pret-auto.org][color=#FFFFFF][u]taux pret auto[/u][/color][/url][color=#FFFFFF] - taux pret auto differe selon la rise en compte ... calculent automatiquement le taux pour un pręt automobile donne.[/color]

mutton

Posts: 2

Registered:
May 14, 2009

» Playlist with download link

Posted: Oct 14, 2009

Reply to: Playlist with download link, from dougsbastos
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.

keneckert

Posts: 1

Registered:
Dec 8, 2009

How to do it?

Posted: Dec 8, 2009

Reply to: » Playlist with download link, from mutton
Mutton, thank you for the solution. If you have some time, would you be able to provide a demo of this? I am unable to get the code to work. I can change the .js file but I do not know how to alter the Youtube-style playlist code. Ken:>