| Sample
XML configuration file of a Flash Photography Template
<music>music.mp3</music>
<txt id="1"><![CDATA[Photo
Album]]></txt>
<photo>
<item fid="1">
<txt
id="1"><![CDATA[Bridge]]></txt>
<txt
id="2"><![CDATA[12/06/02]]></txt>
<src
id="1" w="450"
h="280">images/bridge.jpg</src>
</item>
|
Explanation
<-- Set background
music here
<-- CDATA
in txt
tag contains the caption of the Player
(supports HTML)
<-- photo tag contains photo items
<-- each
item tag represents a photo item
<-- CDATA
in txt tag with attribute
id="1" contains title of a
photo
<-- CDATA
in txt tag with attribute
id="2" contains date of photo
<-- src
tag contains the size and path
of photo
<-- Close
the item tag
|