Kodi Community Forum

Full Version: Get info plot from content solved
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello

How to get info Plot in this case.From <content limit="1"></content> I only have title for movie.I don't know is it possible, before I open this thread I was tried everything, of course without success.

For example when l use for RecommendedMovie everything is ok.

Thanks


Quote: </focusedlayout>
<content limit="1">plugin://plugin.video.pulsar/movies/popular</content>
</control>



Quote: <control type="textbox" id="1">
<description>Plot value</description>
<posx>700</posx>
<posy>900</posy>
<width>500</width>
<height>110</height>
<font>Font-Condensed-S26</font>
<align>justify</align>
<textcolor>bbwhite</textcolor>
<shadowcolor>55000000</shadowcolor>
<pagecontrol>60</pagecontrol>
<autoscroll delay="1000" time="3000" repeat="6000">Control.HasFocus(2)+Container(2).HasFocus(1)</autoscroll>
<label fallback="Sorry,no information is available for for this movie, very soon we will provide more information for you.">$INFO[Window(Home).Property(RecommendedMovie.1.Title)] $INFO[Window(Home).Property(RecommendedMovie.1.Year)] $INFO[Window(Home).Property(RecommendedMovie.1.RunTime)] Min...
$INFO[Window(Home).Property(RecommendedMovie.1.Plot)]</label>
<visible>Control.HasFocus(2)+Container(2).HasFocus(1)</visible>
</control>



Image
What info you can and cannot get is all down to the addon and not Kodi.
you would have to use either $INFO[ListItem.foo] or $INFO[Container(xxx).ListItem.foo] (depends on whether you want to show it inside the container or outside of the container.)
Also, as Hitcher said, make sure that the info is available at all.
Thanks to you and Hitcher also.

I will try this $INFO[ListItem.foo] or $INFO[Container(xxx).ListItem.foo]

Best regards
Did I miss something,is it this correct?
Still I not have some results.



Quote: <control type="textbox" id="10">
<description>Plot value</description>
<posx>700</posx>
<posy>900</posy>
<width>500</width>
<height>110</height>
<font>Font-Condensed-S26</font>
<align>justify</align>
<textcolor>bbwhite</textcolor>
<shadowcolor>55000000</shadowcolor>
<pagecontrol>60</pagecontrol>
<autoscroll delay="1000" time="3000" repeat="6000">Control.HasFocus(8)</autoscroll>
<label fallback="Sorry,no information is available for for this channel, very soon we will provide more information for you.">$INFO[Container(8).ListItem.foo]</label>
<visible></visible>
</control>
By Foo Phil means you have to fill your desired information, in your case it's plot.
HI butchabay

Now everything works ok.
Thank you all for your help.Smile



[/quote] <control type="textbox" id="10">
<description>Plot value</description>
<posx>700</posx>
<posy>900</posy>
<width>500</width>
<height>110</height>
<font>Font-Condensed-S26</font>
<align>justify</align>
<textcolor>bbwhite</textcolor>
<shadowcolor>55000000</shadowcolor>
<pagecontrol>60</pagecontrol>
<autoscroll delay="1000" time="3000" repeat="6000">Control.HasFocus(8)</autoscroll>
<label fallback="Sorry,no information is available for for this channel, very soon we will provide more information for you.">$INFO[Container(8).ListItem.Plot]</label>
<visible></visible>
</control>