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

Your preferred username that is used when logging in.

Forum user: greggo

Basic information

Registered Jul 28, 2009
Last login May 13, 2010
Forum posts 3
Direct URL http://www.flowplayer.org/forum/users/13588

Latest forum posts

Posts:

Registered:

Updated version?

Posted: Jul 6, 2010

This is exactly what I'm looking to do...but would really like to use the most recent version of the tools. Anyone have something similar to this using the most recent code?

Posts:

Registered:

Has this cahnged with v1.2.2?

Posted: May 24, 2010

I have the following code which was working before and no longer is with v1.2.2


<script language="JavaScript"> 
// What is $(document).ready ? See: http://flowplayer.org/tools/documentation/basics.html#document_ready
$(function() {
 
$(".slidetabs").tabs(".images > div", {
 
	// enable "cross-fading" effect
	effect: 'fade',
	fadeOutSpeed: "slow",
 
	// start from the beginning after the last tab
	rotate: true
 
// use the slideshow plugin. It accepts its own configuration
}).slideshow({ autoplay: true, interval: 10000});
});
</script> 

Posts:

Registered:

Simple fix

Posted: Jul 28, 2009

Rather than

div.panes div { display:none; etc... } for the pane styling, use

div.panes > div { display:none; etc... }

and it will only apply to the first div in a pane.