Kodi Community Forum

Full Version: script.extendedinfo
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
This is for sure a very stupid question, but here it goes: how do I install this? I go to your github repo, download the zip, then in XBMC choose "Install from zip file", but nothing happens... What am i missing?
This add-on work in backend.So you have to use a skin that use this script, such as Aeon nox
Big thanks to the creator of this script.

Maybe some of the experts here can help me how to get it working the way i like....
I have no clue how to write such stuff i just like to mod my skin and i have implemented some parts of this script in the neon skin (frodo edition).. It works very well but.....:

The view of the movie "titles" from a collection/set as labels are working correct but when i scroll the movie-list, the titles from the last viewed set do not disappear...
It´s not easy for me to explain so i integrate 2 images.. If you look at the image on the left side you see: the collection movie titles under the small fanart-image.. on the second image you see on the same place (media-codecs..) what i mean..:

Image

Image

Here is the code from my xml:


<!-- List Movies Titles Set etc -->


<control type="group">
<control type="label">
<posx></posx>
<posy>267</posy>
<font>Font_Neon_16</font>
<textcolor>FFFFFAA6</textcolor>
<label> Collection</label>
</control>
<control type="label">
<posx>70</posx>
<posy>267</posy>
<font>Font_Neon_16</font>
<textcolor>FFFFFFFF</textcolor>
<label>[UPPERCASE]$INFO[Window(0).Property(Set.Movies.count)][/UPPERCASE]</label>
</control>
<control type="label">
<posx>2</posx>
<posy>285</posy>
<width>235</width>
<scroll>true</scroll>
<scrollspeed>20</scrollspeed>
<font>Font_Neon_16</font>
<textcolor>FFFFFFFF</textcolor>
<label>$INFO[Window(0).Property(Set.Movie.1.Title)] $INFO[Window(0).Property(Set.Movie.1.Year)]</label>
</control>
<control type="label">
<posx>2</posx>
<posy>305</posy>
<width>235</width>
<scroll>true</scroll>
<scrollspeed>20</scrollspeed>
<font>Font_Neon_16</font>
<textcolor>FFFFFFFF</textcolor>
<label>$INFO[Window(0).Property(Set.Movie.2.Title)] $INFO[Window(0).Property(Set.Movie.2.Year)]</label>
</control>
<control type="label">
<posx>2</posx>
<posy>325</posy>
<width>235</width>
<scroll>true</scroll>
<scrollspeed>20</scrollspeed>
<font>Font_Neon_16</font>
<textcolor>FFFFFFFF</textcolor>
<label>$INFO[Window(0).Property(Set.Movie.3.Title)] $INFO[Window(0).Property(Set.Movie.3.Year)]</label>
</control>
</control>


Thanks for your help!!
(2013-11-06, 21:14)sv0911 Wrote: [ -> ]The view of the movie "titles" from a collection/set as labels are working correct but when i scroll the movie-list, the titles from the last viewed set do not disappear...

You should be able to fix that with a <visibile> tag in the group control.

Code:
<visible>ListItem.IsFolder</visible>

Or use the following to make sure they don't appear for other non-collection folders.

Code:
<visible>IntegerGreaterThan(Window(0).Property(Set.Movies.count),0)</visible>
(2013-11-07, 13:13)Sranshaft Wrote: [ -> ]
(2013-11-06, 21:14)sv0911 Wrote: [ -> ]The view of the movie "titles" from a collection/set as labels are working correct but when i scroll the movie-list, the titles from the last viewed set do not disappear...

You should be able to fix that with a <visibile> tag in the group control.

Code:
<visible>ListItem.IsFolder</visible>

Or use the following to make sure they don't appear for other non-collection folders.

Code:
<visible>IntegerGreaterThan(Window(0).Property(Set.Movies.count),0)</visible>

Big big thanks Sranshaft,

very kind of you!!!!!
I use the second tag suggestions and it works very well.
I implemented the tags under every label and adjusted the counts # 0,1, a.s.o...!!
Again, big thanks to you...!!!!!!
(2013-11-07, 13:36)sv0911 Wrote: [ -> ]
(2013-11-07, 13:13)Sranshaft Wrote: [ -> ]
(2013-11-06, 21:14)sv0911 Wrote: [ -> ]The view of the movie "titles" from a collection/set as labels are working correct but when i scroll the movie-list, the titles from the last viewed set do not disappear...

You should be able to fix that with a <visibile> tag in the group control.

Code:
<visible>ListItem.IsFolder</visible>

Or use the following to make sure they don't appear for other non-collection folders.

Code:
<visible>IntegerGreaterThan(Window(0).Property(Set.Movies.count),0)</visible>

Big big thanks Sranshaft,

very kind of you!!!!!
I use the second tag suggestions and it works very well.
I implemented the tags under every label and adjusted the counts # 0,1, a.s.o...!!
Again, big thanks to you...!!!!!!
can you please explain/clarify how to do that
(2013-11-17, 11:18)MeniBI Wrote: [ -> ]
(2013-11-07, 13:36)sv0911 Wrote: [ -> ]
(2013-11-07, 13:13)Sranshaft Wrote: [ -> ]You should be able to fix that with a <visibile> tag in the group control.

Code:
<visible>ListItem.IsFolder</visible>

Or use the following to make sure they don't appear for other non-collection folders.

Code:
<visible>IntegerGreaterThan(Window(0).Property(Set.Movies.count),0)</visible>

Big big thanks Sranshaft,

very kind of you!!!!!
I use the second tag suggestions and it works very well.
I implemented the tags under every label and adjusted the counts # 0,1, a.s.o...!!
Again, big thanks to you...!!!!!!
can you please explain/clarify how to do that

Sure,

here the way i got it working for me (example for 3 labels.. just look at the counts:

------------------------------------------------------------------------------------------------------------------------------------------

<control type="label">
<width>235</width>
<scroll>true</scroll>
<scrollspeed>20</scrollspeed>
<font>Font_Neon_15</font>
<textcolor>FFFFFFFF</textcolor>
<label>$INFO[Window(0).Property(Set.Movie.1.Title)] $INFO[Window(0).Property(Set.Movie.1.Year)]</label>
<visible>IntegerGreaterThan(Window(0).Property(Set.Movies.count),0)</visible>
</control>
<control type="label">
<width>235</width>
<scroll>true</scroll>
<scrollspeed>20</scrollspeed>
<font>Font_Neon_15</font>
<textcolor>FFFFFFFF</textcolor>
<label>$INFO[Window(0).Property(Set.Movie.2.Title)] $INFO[Window(0).Property(Set.Movie.2.Year)]</label>
<visible>IntegerGreaterThan(Window(0).Property(Set.Movies.count),1)</visible>
</control>
<control type="label">
<width>235</width>
<scroll>true</scroll>
<scrollspeed>20</scrollspeed>
<font>Font_Neon_15</font>
<textcolor>FFFFFFFF</textcolor>
<label>$INFO[Window(0).Property(Set.Movie.3.Title)] $INFO[Window(0).Property(Set.Movie.3.Year)]</label>
<visible>IntegerGreaterThan(Window(0).Property(Set.Movies.count),2)</visible>
</control>


----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

I used it also for the covers...
Here how it looks now on my modded skin:

Image


Greetings
sv0911
@phil65 if you can read this, please make this script compatible with the Gotham. Works well in Frodo but shows no data in Gotham.

And also, on behalf of the whole community, please submit this script to the official repository.

Currently, the XBMC without your script is something incomplete. Nod
Maybe it would be better to point out the things/features that are not working.
So if not phil65, than someone else could pick up the script and make it Gotham compatible.
For fix script for use in gotham, need

1. File Utils.py, line 175 change code for
Code:
"LibraryPath" : 'musicdb://artists/' + str(item['artistid']) + '/' }

2. File default.py line 655 change code for
Code:
if xbmc.getCondVisibility("!IsEmpty(ListItem.DBID) + [SubString(ListItem.Path,videodb://movies/sets/,left)| Container.Content(artists) | Container.Content(albums)]"):

It´s solve problems in gotham.
I could integrate this changes in my fork of script.extendedinfo that way it will be available through github
@winilton

When I do the suggestion, I can get the script installed in Gotham alpha 10. However it does not populate the movie sets information. Im using mq5. Any suggestion to get this working?
Thanks Wanilton - seems to have worked here. Gotham A10, MQ5 5.8.0
(2013-11-18, 22:55)sv0911 Wrote: [ -> ]
(2013-11-17, 11:18)MeniBI Wrote: [ -> ]
(2013-11-07, 13:36)sv0911 Wrote: [ -> ]Big big thanks Sranshaft,

very kind of you!!!!!
I use the second tag suggestions and it works very well.
I implemented the tags under every label and adjusted the counts # 0,1, a.s.o...!!
Again, big thanks to you...!!!!!!
can you please explain/clarify how to do that

Sure,

here the way i got it working for me (example for 3 labels.. just look at the counts:

------------------------------------------------------------------------------------------------------------------------------------------

<control type="label">
<width>235</width>
<scroll>true</scroll>
<scrollspeed>20</scrollspeed>
<font>Font_Neon_15</font>
<textcolor>FFFFFFFF</textcolor>
<label>$INFO[Window(0).Property(Set.Movie.1.Title)] $INFO[Window(0).Property(Set.Movie.1.Year)]</label>
<visible>IntegerGreaterThan(Window(0).Property(Set.Movies.count),0)</visible>
</control>
<control type="label">
<width>235</width>
<scroll>true</scroll>
<scrollspeed>20</scrollspeed>
<font>Font_Neon_15</font>
<textcolor>FFFFFFFF</textcolor>
<label>$INFO[Window(0).Property(Set.Movie.2.Title)] $INFO[Window(0).Property(Set.Movie.2.Year)]</label>
<visible>IntegerGreaterThan(Window(0).Property(Set.Movies.count),1)</visible>
</control>
<control type="label">
<width>235</width>
<scroll>true</scroll>
<scrollspeed>20</scrollspeed>
<font>Font_Neon_15</font>
<textcolor>FFFFFFFF</textcolor>
<label>$INFO[Window(0).Property(Set.Movie.3.Title)] $INFO[Window(0).Property(Set.Movie.3.Year)]</label>
<visible>IntegerGreaterThan(Window(0).Property(Set.Movies.count),2)</visible>
</control>


----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

I used it also for the covers...
Here how it looks now on my modded skin:

Image


Greetings
sv0911

Did extended script info add those posters in the middle or was that modded? I can't seem to get it to do that. If it is modded could you share the files you edited... That would make neon my go to skin.
Hello

I checked all posts,still I do not understand what I needs to type in my xml to get image in home wraplist.
Which line I need for texture to type in my xml?
Best Regards