|
Sample XML configuration file of a Flash Photography Template
<photogallery defaultfolder="0">
<music>music.mp3</music>
<txt id="1">
<![CDATA[Photo Album PA009]]>
</txt>
<src id="1" w="480" h="298">images/pet01001.jpg</src>
...
<src id="7" w="480" h="298">images/pet07001.jpg</src>
<folder>
<item id="1" pid="0">
<txt id="1">
<![CDATA[Main Category 1]]>
</txt>
<src id="1" w="450" h="280">images/testtubes.jpg</src>
</item>
<item id="2" pid="1">
<txt id="1">
<![CDATA[Sub Category 1]]>
</txt>
<txt id="2">
<![CDATA[]]>
</txt>
<txt id="3">
<![CDATA[]]>
</txt>
<src id="1" w="100" h="62">images/train.jpg</src>
</item>
......
</folder>
<photo>
<item fid="2">
<txt id="1">
<![CDATA[pet01.jpg]]>
</txt>
<src id="1" w="500" h="310">images/pet01.jpg</src>
</item>
......
</photo>
</photogallery>
|
Explanation
<-- Open the photoalbum tag
<-- Set background music here
<-- CDATA in tag txt of id="1" sets the title of album
<-- src tag of id="1" contains size and path of the background image
(Note: the maximum number of background image is 7)
<-- Open the folder tag to define categories or sub-categories
<-- Each item tag represents a category or sub-category. Set pid="0" to define categories.
<-- CDATA in tag txt sets the category name
<-- src tag of id="1" contains size and path of the thumbnail
<-- Close the item tag
<-- Set pid to non-zero number to define sub-categories. The item tag of pid="1" represents that is a sub-category of item tag of id="1".
<-- CDATA in tag txt sets the sub-category name
(Note: the maximum number of category is 3 and the maximum number of sub-category is 5)
<-- src tag of id="1" contains size and path of the thumbnail
<-- Close the item tag
<-- Close the folder tag
<-- Open the photo tag to define photos
<-- Each item tag represents a photo. Set fid to item id of a folder tag.
<-- txt tag of id="1" contains information of the thumbnail
<-- CDATA in tag sets description text of the full size photo
<-- Close the txt tag
<-- src tag of id="1" contains size and path of the thumbnail
<-- Close the item tag
<-- Close the photo tag
<-- Close the photogallery tag
|