I love the whole wide world
I am not sure what you mean with template. In the zip-archive all necessary files are included. It contains the SWF that will display the images. With the XML-file you specify the paths to your images, the names of your images and the button descriptions. For example:
XML
Code: Select all<pic>
<image>your_image.jpg</image>
<btnName>The button description for this image</btnName>
</pic>
If you have lots of images it may be better to put your images in an extra folder, so the syntax will be:
Code: Select all<pic>
<image>your folder/your_image.jpg</image>
<btnName>The button description for this image</btnName>
</pic>
HTML
If you want to change the size of the SWF (the viewer), open the HTML-file with a simple Text-Editor like NotePad and change the following lines:
Code: Select allobject, embed {
position:absolute;
left: 50%;
top: 50%;
width: 1000px; <------- The width of your images
height: 600px; <------- The height of your images
margin: -300px 0 0 -500px; /* Half size of height and width, so it is centered x and y */
outline: none;
}
The margin values are necessary for centering the player in the browser window. Its values are top, right, bottom, left. If you just want to center it horizontally and vertically, alter the first and the last entry. The values should be half of the image size.
For changing the position of the drop-down-menu, just alter this line to your needs:
Code: Select all<param name="FlashVars" value="navMenu=right"> <!-- Values: left, right or middle -->
Hope this helps.
