Kodi Community Forum
Information from the EPG - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Pellucid (https://forum.kodi.tv/forumdisplay.php?fid=267)
+---- Thread: Information from the EPG (/showthread.php?tid=347325)



Information from the EPG - zon2004 - 2019-09-17

Please help tell me what needs to be changed in the file - MyPVRChannels.xml so that the color shows the status of the current broadcast IPTV

Image


RE: Information from the EPG - nonJon - 2019-09-17

Here's an example of what needs to be done in View_LiveTVChannels.xml

PHP Code:
<control type="label">
    <
posx>1-col-indent</posx>
    <
posy>0</posy>
    <
width>288</width>
    <
height>2-row</height>
    <
aligny>center</aligny>
    <
font>itemTitle</font>
    <
textcolor>textActive</textcolor>
    <
label>$INFO[ListItem.Label]</label>
    <
selectedcolor>red</selectedcolor>  <!-- added to highlight active channel -->    
</
control

Do this for the label in both the itemlayout and focusedlayout sections of the list. hth


RE: Information from the EPG - zon2004 - 2019-09-18

nonJon thanks you.
This is not exactly what I wanted. But you sent me to the desired file and I did what I wanted.
That's what happened

Image

Code:

                    <control type="image">
                        <posx>520</posx>
                        <posy>57</posy>
                        <width>7-col-gutter</width>
                        <height>12</height>
                        <texture colordiffuse="1600FFFF">colors/white.png</texture>
                    </control>
                    <control type="progress">
                        <posx>520</posx>
                        <posy>55</posy>
                        <width>7-col-gutter</width>
                        <height>1</height>
                        <midtexture border="6">colors/white.png</midtexture>
                        <colordiffuse>6800EF00</colordiffuse>
                        <visible>ListItem.HasEpg</visible>
                        <info>ListItem.Progress</info>
                    </control>



RE: Information from the EPG - thedeadman - 2019-10-09

Thanks for posting this. I will consider adding it to future updates to the skin.