Kodi Community Forum

Full Version: List Item Information
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I can't seem to access the variable used to display information about the media to the user. (See image.) label2 of the ListItem constructor does not seem to have any effect. What is the correct method for changing this 'No information available' text?

Image
I think that part is 'plot' in infolabels
try:
Code:
#
    liz=xbmcgui.ListItem(label=post_title)

    il={"title": post_title, "plot": il_description }  

    liz.setInfo(type='video', infoLabels=il)

lots of stuff you can add as infolabels but it depends on the skin if they will be displayed.
That worked (using Estuary skin).

Thank you!