Kodi Community Forum

Full Version: Possible for Container.ShowPlot for season node within a list?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have been trying to get a list of mine to show the tv show plot on the season level, but I have not gotten anything to work, so I am wondering if it is at all possible. I usually use this below for all other areas out side of the list...

<control type="textbox">
<description>Plot Textbox</description>
<posx>335</posx>
<posy>65</posy>
<font>MediumBold3</font>
<textcolor>dfeeeeee</textcolor>
<width>575</width>
<height>110</height>
<label>$INFO[Container(68).ShowPlot]</label>
<align>justify</align>
<autoscroll delay="15000" time="2000" repeat="10000" />
<visible>Container.Content(seasons)</visible>
</control>
try:

<label>$INFO[Container.ShowPlot]</label>
<visible>Container.Content(seasons) + Control.IsVisible(68)</visible>

This works for me
cool, never knew we could show plot at season level. :-)
ronie, I'm disappointed in you. Wink

Container.ShowPlot - Returns the TV Show Plot of the current container and can be used at season and episode level
Hitcher Wrote:ronie, I'm disappointed in you. Wink

Container.ShowPlot - Returns the TV Show Plot of the current container and can be used at season and episode level

Yes, and its a very nice feature as well. Big Grin
Yay!!!
Jeroen Wrote:try:

<label>$INFO[Container.ShowPlot]</label>
<visible>Container.Content(seasons) + Control.IsVisible(68)</visible>

This works for me

I tried this, but still no luck. Are you using a label or a textbox.

Also mine is within the focused layout of a fixedlist.
I'm pretty sure that "Container.blah" info labels wont actually work inside a list control only the "Listitem.blah" actually get updated and feed to the control (something to do with speed). If you really want it you will have to position it outside but maybe jmarshall can confirm that
Correct. ListItem.* only for labels + images inside a control.
Thanks for the info. I worked around it by placing it outside. It would be nice to have a listitem.showplot for the season level though. Is this worth a trac ticket?
jmarshall Wrote:Correct. ListItem.* only for labels + images inside a control.

You can use them in the focusedlayout just not the itemlayout. Wink
It doesn't make sense to me having listitem.showplot given that the showplot is the same for all seasons.

Thus the reason it's container.showplot.

@Hitcher: If that is the case it is certainly not on purpose Wink

Cheers,
Jonathan
jmarshall Wrote:It doesn't make sense to me having listitem.showplot given that the showplot is the same for all seasons.

Thus the reason it's container.showplot.

hmmm....

Quote:Container.ShowPlot
Returns the TV Show Plot of the current container and can be used at season and episode level

ListItem.TVShowTitle
Shows the name value for the currently selected tvshow in the season and episode depth of the video library

i rest my case ;-)
Mostly there because of recently added node
Indeed - we rest our case ;-)