3 \page RSS_feed_Control RSS ticker
4 \brief **Used to display scrolling RSS feeds.**
8 Kodi can display an RSS feed on the home screen of the default skin/interface
9 (Estuary), as well as any other skin that supports RSS feeds. By default,
10 the RSS news feed is taken from [http://kodi.tv](http://kodi.tv/), but the feed
11 can be changed to almost any RSS feed.
13 @note Don't confuse the RSS ticker with RSS media source, which allows access to
14 video and/or audio RSS streams.
17 --------------------------------------------------------------------------------
18 \section RSS_feed_Control_sect1 RSS ticker settings
20 The RSS ticker can be toggled on or off by going to
21 <b>`Settings -> Appearance -> Skin -> Show RSS news feed`</b>
23 Below this setting one can also change the RSS news feed address.
26 --------------------------------------------------------------------------------
27 \section RSS_feed_Control_sect2 Technical documentation for skinners
29 Main page: [Skin development](http://kodi.wiki/view/Skin_development)
31 \subsection RSS_feed_Control_sect2_1 RSS control
32 The rss control is used for displaying scrolling RSS feeds from the internet
33 in Kodi. You can choose the font, size, colour, location and the RSS feed to
39 <control type="rss" id="1">
40 <description>My First RSS control</description>
44 <visible>true</visible>
46 <textcolor>FFB2D4F5</textcolor>
47 <headlinecolor>FFFFFFFF</headlinecolor>
48 <titlecolor>FF655656</titlecolor>
53 \subsection RSS_feed_Control_sect2_2 Available tags and attributes
55 In addition to the [Default Control Tags](http://kodi.wiki/view/Default_Control_Tags)
56 the following tags are available. Note that each tag is **lower case** only. This is
57 important, as `xml` tags are case-sensitive.
60 |--------------:|:--------------------------------------------------------------|
61 | id | This refers to the feedset to be displayed. This is the id reference to the <b>`<set>`</b> section in [RssFeeds.xml](http://kodi.wiki/view/RssFeeds.xml) (see below):
62 | font | Specifies the font to use from the font.xml file.
63 | textcolor | Specified the color the text should be. In hex **AARRGGBB** format, or a name from the [colour theme](http://kodi.wiki/view/Colour_Themes).
64 | shadowcolor | Specifies the color of the drop shadow on the text. In **AARRGGBB** format, or a name from the [colour theme](http://kodi.wiki/view/Colour_Themes).
65 | headlinecolor | Specified the color that any highlighted text should be. In hex **AARRGGBB** format, or a name from the [colour theme](http://kodi.wiki/view/Colour_Themes).
66 | titlecolor | Specified the color the titles of the feeds should be. In hex **AARRGGBB** format, or a name from the [colour theme](http://kodi.wiki/view/Colour_Themes).
67 | scrollspeed | Scroll speed of text in pixels per second.
70 \subsection RSS_feed_Control_sect2_3 RssFeeds.xml
72 - <em>Main page: [RssFeeds.xml](http://kodi.wiki/view/RssFeeds.xml)</em>
74 The actual content of the RSS feed is defined in the
75 [RssFeeds.xml](http://kodi.wiki/view/RssFeeds.xml) file stored in the user's
76 profile. Here is an example :
81 <feed updateinterval="30">http://feeds.feedburner.com/XboxScene</feed>
82 <feed updateinterval="30">http://feeds.wired.com/wired/topheadlines</feed>
85 <feed updateinterval="30">http://www.cnet.co.uk/feeds/public/rss_news_10.htm</feed>
90 As can be seen, each feedset has an id attribute – this is what we are
91 referencing in the <b>`<id>`</b> attribute of the control. There can be more
92 than one <b>`<set>`</b> defined, and more than one <b>`<feed>`</b> per
93 set. The <b>`<feed>`</b>'s must be escaped so that they're xml-safe (ie replace &
94 with & etc.). Each feed in the set runs through in the order they are defined.
97 --------------------------------------------------------------------------------
98 \section RSS_feed_Control_sect3 See also
100 - [RssFeeds.xml](http://kodi.wiki/view/RssFeeds.xml)
103 - [Add-on development](http://kodi.wiki/view/Add-on_development)
104 - [Skinning](http://kodi.wiki/view/Skinning)