We based the XML format of Live Text Data on an RSS feed: This is a simplified XML file with support for “Title” and “Description” tags. Each field will display the contents of the “Description” tag.
You can select an item to be displayed based on its name (Item title) or its index number in the file (Item index).
You can use the RSS format to build the source Data Feed. See the example screenshot and RSS feed below:
Example RSS XML
To display “$3.99”, you can use “Item Description” radio button and enter “HotDogPrice” as the title. Since "HotDogPrice" is the second item, you can alternatively select the “Item Index” radio button and specify the number 2.
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title>Sample List File </title>
<description>This is an example of an live text feed file</description>
<ttl>1800</ttl>
<item>
<title>Item 1</title>
<description>Hot Dogs</description>
</item>
<item>
<title>HotDogPrice</title>
<description>$3.99</description>
</item>
</channel>
</rss>
8 Comments