Forum user: dougsbastos
Basic information
| Registered | Feb 20, 2009 |
| Last login | Mar 6, 2009 |
| Forum posts | 5 |
| Direct URL | http://www.flowplayer.org/forum/users/8559 |
Latest forum posts
Hi Robi!
I made my own list and pass the video using a function of API $f().play(clip)
Se the code below:
If you want use the playlist plugin, you have made a changes to work correct.
Regards,
Doug
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
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
But no problem. I will do my own. If someone wants to contact me.
No more!
Doug
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!
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!