2021-11-01, 00:41
Anybody know where i can find the latest Version for python 2?
(2021-11-01, 00:41)DTR81 Wrote: Anybody know where i can find the latest Version for python 2?
(2021-11-08, 10:55)nonob Wrote: Hi ,
As I said in my last message : since I updated Kodi to version 19, I can't see anymore the "extended" info" button on information screens for both tv shows and movies.
Did I miss something?
I tried @scott967 and @M89SE forks but I have the same issue.
Is this extended info add-on always supposed to work on Kodi 19 and display an "extended info" button ?
Thanks
(2021-11-08, 23:11)scott967 Wrote: If you mean on Estuary/Estouchy skins, I believe that button has been removed from the skin.
(2021-11-08, 23:11)scott967 Wrote: I have been a little negligent on extendedinfo script for Kodi 19/20, as the support module for it (script.module.kodi65) has a new replacement that is python3 and is in the official repo.
xml:<control type = "button">
... (code)
</control>
(2022-11-02, 20:26)alberto1998 Wrote: @scott967The following skin code adds a button to the "movie information" dialog in Confluence ver 4.7.13 -- this is more or less how Estuary did it in Kodi 18 and prior.
Can I ask you how to make the script.extendedinfo add-on work via a button in kodi 19.4 skin confluence?
I have already installed script.extendedinfo (from your repository: repository.aeonmq5_mod-11.1.0.zip of 25 May 2022) but I can't get it to work, what is the code that I should put in my skin inside a button?
Example:
xml:<control type = "button">
... (code)
</control>
Do i need to install or do anything else?
Thank you very much for your help 🙏
xml:<control type="button" id="101">
<description>Extrainfo</description>
<include>ButtonInfoDialogsCommonValues</include>
<onclick>RunScript(script.extendedinfo,info=openinfodialog)</onclick>
<label>Extra $LOCALIZE[31033]</label>
<visible>System.hasAddon(script.extendedinfo) + [String.IsEqual(ListItem.DbType,movie) | String.IsEqual(ListItem.DbType,tvshow) | String.IsEqual(ListItem.DbType,season) | String.IsEqual(ListItem.DbType,episode)]</visible>
</control>
(2022-11-04, 22:42)alberto1998 Wrote: I only have 2 questions to ask, if I may ask, related to the script.
1) TADB API key, refers to: The Audio Data Base?
(2022-11-04, 22:42)alberto1998 Wrote: 2) I noticed that in my skin in the "Recommended by TMDB" section the movies are not clickable, as well as in other sections, is this the correct behavior? or by using this script on various skins something may not work correctly?
(2022-11-30, 22:01)scott967 Wrote: That should be working, last I looked at it. Might depend on how you are invoking the script. Debug log might help.I invoke the script normally, via the button in the DialogVideoInfo, with the code you provided me.
scott s.
.