views:

77

answers:

3

Hi there,

I am trying to get familar with the jQuery Tools - Slideshow from Flowplayer (http://flowplayer.org/tools/tabs/slideshow.html). Has anybody a hint for me how to select e.g. tab2 as start default, or how to switch to another tab when starting?

Thanks in advance,

Juergen

+1  A: 

http://flowplayer.org/tools/tabs/index.html

look for initialIndex in the configuration property...

Reigel
Hi Reigel,thanks for this advice. Yes, 'initialIndex' was the missing magic word ;-)Juergen
Juergen
no worries.. you may accept the correct answer now.. :)
Reigel
A: 

Hey You Should Read this
http://flowplayer.org/tools/documentation/scripting.html#events its says about it and also
http://flowplayer.org/tools/tabs/index.html is also saying

Alex Mathew
Hi Alex,thanks for your help. The advice from Reigel with 'initialIndex' was the solution.Juergen
Juergen
+1  A: 
$(".slidetabs").tabs(".images > div", {

    // enable "cross-fading" effect
    effect: 'fade',
    fadeOutSpeed: "slow",

    // start from the beginning after the last tab
    rotate: true,

//set your default tab
current: "tab_2" //class name

// use the slideshow plugin. It accepts its own configuration
}).slideshow();
Flakron Bytyqi
Hi Flakron,thanks for your help. The advice from Reigel with 'initialIndex' was the solution.Juergen
Juergen