Include the xml files (they should be in the same folder of the Textfield and Scrollarea plugins):
<include url="plugins/auto_thumbs.xml" /> <include url="plugins/tooltip.xml" />
That's it! Just with that a row of thumbs will be displayed at the bottom left of the tour.
Note: The plugin gets the thumbnails images from the thumburl attribute in each scene. These are generated automatically when you use the Make VTour tool, or you can define them manually too.
To define groups/albums, add an album attribute to the first scene of each desired album. The album will contain that first scene, and all the following scenes until another album is defined.
For example, to define a tour of 2 albums with 2 scenes each:
<scene thumburl="..." title="Scene 1 title" album="Album 1 title" ... <scene thumburl="..." title="Scene 2" ... <scene thumburl="..." title="Scene 3 title" album="Album 2 title" ... <scene thumburl="..." title="Scene 4" ...
The whole plugin is contained in layer with name="auto_thumbs", which you can manipulate dinamically to show or hide the plugin. A basic example:
<layer name="toggle_thumbs_button" onclick="switch(layer[auto_thumbs].visible)" ... />
You can also play with the alpha attribute, and use the tween() action to achieve something more smooth.
These are all the possible settings and their default values.
<settings name="auto_thumbs" thumb_size="120" thumb_background_size="156" thumb_spacing="0" left="10" right="10" bottom="5" albums_right="10" onstart="" />
Below are two examples, with and without albums, along with a link to their xml source.
Simple