TV Show Info Panel
#1
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
Reply
#2
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
Reply

Logout Mark Read Team Forum Stats Members Help
TV Show Info Panel0