Kodi Community Forum
How Can i make RSS Feed show all the time - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Skinning (https://forum.kodi.tv/forumdisplay.php?fid=12)
+--- Thread: How Can i make RSS Feed show all the time (/showthread.php?tid=316514)



How Can i make RSS Feed show all the time - guyz1987 - 2017-06-14

Hi all

maybe I`m not the last was ask about that
but i stuck about this a some mounth Undecided

i just want to show the RSS Feed (slideshow) on the bottom line of the screen all the time
even if i play videos

i uses right now with RSSPOPUP addon but i cannot change the font size and it make me nutsss

some one can help me
and guide me how can i make it work
and put the RSS slidebar on bottom of screen

i search about that long time read alot on the fourm and search on google
try things people wrote and nothing

i uses on eminence skin

I`m fill lost ConfusedHuhUndecidedAngryRolleyesSadConfused


HELPPPPPPPPPPPPPPPPPPPWink


RE: How Can i make RSS Feed show all the time - Hitcher - 2017-06-15

Use a custom window that's displayed all the time like I did with Alaska -

https://github.com/HitcherUK/skin.alaska/blob/master/16x9/Custom_Overlay.xml#L209


RE: How Can i make RSS Feed show all the time - guyz1987 - 2017-06-22

Hi that not work for me you can guide me how to do that on eminence skin


RE: How Can i make RSS Feed show all the time - Hitcher - 2017-06-22

Did you use fonts/colours for that skin?

Code:
<?xml version="1.0" encoding="UTF-8"?>
<window type="dialog" id="50">
    <zorder>100</zorder>
    <visible>!Window.IsVisible(startup)</visible>
    <controls>

            <!-- Global RSS -->

            <control type="rss" id="1">
                <left>0</left>
                <bottom>27</bottom>
                <width>FullWidth</width>
                <height>36</height>
                <!-- Pick a font from font.xml -->
                <font>FONT</font>
                <!-- Pick colours from colors/defaults.xml -->
                <textcolor>COLOUR</textcolor>
                <headlinecolor>COLOUR</headlinecolor>
                <titlecolor>COLOUR</titlecolor>
                <urlset>1</urlset>
            </control>

    </controls>

</window>