• 1
  • 34
  • 35
  • 36(current)
  • 37
  • 38
  • 151
Release script.extendedinfo
Great work @phil65 with tmdb ! i can select french plot now Smile amazing job!!
Reply
Using latest version of script I get the wrong posters for items in my library for a majority of entries. I can provide any other information needed like logs or anything else you may require. I thought a visual of the mismatch would provide more context though. Clicking the title does take me to the correct item it is just the poster that does not match.

watch gallery
Reply
Can you explain what the code below calls for in terms of xml code:

PHP Code:
elif controlID in [3501150]:
            
AddToWindowStack(self)
            
self.close()
            
listitem =xbmcgui.ListItem ('Trailer')
            
listitem.setInfo('video', {'Title''Trailer''Genre''Youtube Video'})
            
youtube_id self.getControl(controlID).getSelectedItem().getProperty("youtube_id")
            if 
youtube_id:
                
self.movieplayer.playYoutubeVideo(youtube_idself.getControl(controlID).getSelectedItem(), True)
                
self.movieplayer.WaitForVideoEnd()
                
PopWindowStack() 

I have a panel with an ID of 1150 and 350. What version of ListItem.INSERTHERE brings back a video thumb and label?
Reply
The code you posted deals with the onclick for youtube and video list.
Donate: https://kodi.tv/contribute/donate (foundation), 146Gr48FqHM7TPB9q33HHv6uWpgQqdz1yk (BTC personal)
Estuary: Kodis new default skin - ExtendedInfo Script - KodiDevKit
Reply
I understand. I'm not trying to be needlessly annoying. I just wanted to finish a project I started with your script. I have completed everything save two panels. I know from your example and the snippet below that I must have the correct IDs:

PHP Code:
self.getControl(1000).addItems(CreateListItems(self.movie["actors"], 0))
        
self.getControl(150).addItems(CreateListItems(self.movie["similar"], 0))
        
self.getControl(250).addItems(CreateListItems(self.set_listitems0))
        
self.getControl(450).addItems(CreateListItems(self.movie["lists"], 0))
        
self.getControl(550).addItems(CreateListItems(self.movie["studios"], 0))
        
self.getControl(650).addItems(CreateListItems(self.movie["releases"], 0))
        
self.getControl(750).addItems(CreateListItems(self.crew_list0))
        
self.getControl(850).addItems(CreateListItems(self.movie["genres"], 0))
        
self.getControl(950).addItems(CreateListItems(self.movie["keywords"], 0))
        
self.getControl(1050).addItems(CreateListItems(self.movie["reviews"], 0))
        
self.getControl(1150).addItems(CreateListItems(self.movie["videos"], 0))
        
self.getControl(1250).addItems(CreateListItems(self.movie["images"], 0))
        
self.getControl(1350).addItems(CreateListItems(self.movie["backdrops"], 0))
        
self.getControl(350).addItems(CreateListItems(self.youtube_vids0)) 

In your example, you use ListItem.Thumb and ListItem.Label with panels 350 and 1150 and return content. I set-up the same panel and nothing appearsHuh
Reply
I am also having trouble displaying content in DialogVideoInfo:

Image
Image

Using the same calls as your example DialogVideoInfo, the following panels will not bring back any content:
  • Movie Crew Roles - Panel ID 550
    (ListItem.Thumb, ListItem.Label, ListItem.Year)
  • Actor Thumbs - Panel ID 450
  • Fanart Images - Panel ID 750
I think this is a script issue as I followed your example as closely as possible.
Reply
@ Warner360: I suggest you take a closer look at the original code, I just tested the panels you are referring to and they all work perfectly.

Put all the panels in..<control type="group" id="5000"> then separate each panel with it own relevant group e.g. <control type="group" id="4500"> for panel id="450"

PHP Code:
<control type="group" id="5000">
....
    <
control type="group" id="4500">
        <
control type="panel" id="450">
        .....
        .....
        </
control>
    </
control>
</
control
Reply
(2014-12-24, 01:45)Steveb Wrote: @ Warner360: I suggest you take a closer look at the original code, I just tested the panels you are referring to and they all work perfectly.

Put all the panels in..<control type="group" id="5000"> then separate each panel with it own relevant group e.g. <control type="group" id="4500"> for panel id="450"

PHP Code:
<control type="group" id="5000">
....
    <
control type="group" id="4500">
        <
control type="panel" id="450">
        .....
        .....
        </
control>
    </
control>
</
control

the groups arent needed, adding all lists / panels is enough.
Donate: https://kodi.tv/contribute/donate (foundation), 146Gr48FqHM7TPB9q33HHv6uWpgQqdz1yk (BTC personal)
Estuary: Kodis new default skin - ExtendedInfo Script - KodiDevKit
Reply
(2014-12-24, 00:43)Warner306 Wrote: I think this is a script issue as I followed your example as closely as possible.

So why would it work in my reference xml then?
You should also start lookin into debug log...that would have answered all your questions.
Donate: https://kodi.tv/contribute/donate (foundation), 146Gr48FqHM7TPB9q33HHv6uWpgQqdz1yk (BTC personal)
Estuary: Kodis new default skin - ExtendedInfo Script - KodiDevKit
Reply
(2014-12-24, 01:58)phil65 Wrote:
(2014-12-24, 01:45)Steveb Wrote: @ Warner360: I suggest you take a closer look at the original code, I just tested the panels you are referring to and they all work perfectly.

Put all the panels in..<control type="group" id="5000"> then separate each panel with it own relevant group e.g. <control type="group" id="4500"> for panel id="450"

PHP Code:
<control type="group" id="5000">
....
    <
control type="group" id="4500">
        <
control type="panel" id="450">
        .....
        .....
        </
control>
    </
control>
</
control

the groups arent needed, adding all lists / panels is enough.

Cheers, good to know. Then you can disable the panels you don't need/want with a visible condition.
Reply
Ok, sorry for the fuss. Adding the panels to a larger group was not noticed while browsing through the code.
Reply
forgot to mention it: If anyone decides to skin this then please add a moviedb logo to the infodialog. It´s part of their terms of use.
https://www.themoviedb.org/about/logos-attribution

Also, merry christmas to everyone Wink
Donate: https://kodi.tv/contribute/donate (foundation), 146Gr48FqHM7TPB9q33HHv6uWpgQqdz1yk (BTC personal)
Estuary: Kodis new default skin - ExtendedInfo Script - KodiDevKit
Reply
you too phil thx
Reply
(2014-12-24, 17:47)phil65 Wrote: Also, merry christmas to everyone Wink

And to you as well Smile
Reply
(2014-12-24, 17:47)phil65 Wrote: Also, merry christmas to everyone Wink

Merry Christmas to you.
Reply
  • 1
  • 34
  • 35
  • 36(current)
  • 37
  • 38
  • 151

Logout Mark Read Team Forum Stats Members Help
script.extendedinfo29