Kodi Community Forum
TV Show Info Panel - 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: Skin Archive (https://forum.kodi.tv/forumdisplay.php?fid=179)
+----- Forum: Neon (https://forum.kodi.tv/forumdisplay.php?fid=139)
+----- Thread: TV Show Info Panel (/showthread.php?tid=110535)



TV Show Info Panel - anthony.selby - 2011-09-20

I have a random smart playlist set up and I love Neon but when it moves to the next show and I hit the info button, it shows the Episode and Season as well as the name of the episode but is there a way I can get it to show the name of the series as well ?

If its some XML file I can change that would be great to .... Thanks


Just in case any one else wants to do this - anthony.selby - 2011-09-20

I found the entry that works for me ...

its in the neon skin directory (720p)

on live its ~/.xbmc/addons/skin.neon/720p/DialogFullScreenInfo.xml

I scrolled down until I found the

Code:
<control type="label">
   <posx>0</posx>
   <posy>20</posy>
   <width>750</width>
   <height>25</height>
   <label>$INFO[VideoPlayer.Title]</label>
   <align>left</align>
   <aligny>center</aligny>
   <font>Font_Bartowski_Title_Movie</font>
   <textcolor>mainblue</textcolor>
   <visible>VideoPlayer.Content(episode)</visible>
</control>

And Changed It To

Code:
<control type="label">
   <posx>0</posx>
   <posy>20</posy>
   <width>690</width>
   <height>25</height>
   <label>$INFO[VideoPlayer.TVShowTitle] - $INFO[VideoPlayer.Title]</label>
   <align>left</align>
   <aligny>center</aligny>
   <font>Font_Bartowski_Title_Movie</font>
   <textcolor>mainblue</textcolor>
   <visible>VideoPlayer.Content(episode)</visible>
</control>

Change in case you missed it I changed the width (so it doesn't write over the at Date) and the label

*It would be awesome if this was in the next update of the skin

Thanks