Mod Estuary MOD V2 - KODI 18 (UPDATED 17/01/19)
(2017-08-13, 23:23)Angelinas Wrote: @Guilouz

Extended info button from dialogvideo doesent work for me......
From context menu open extended info.

This is fix for that button:
But have one strange situation (Kodi isue)

movie - open movie info
tvshow -open tvshow info
season - open tvshow info
episode - open season info
Smile
DialogVideoInfo.xml
Code:
                    <include content="InfoDialogButton">
                        <param name="id" value="101" />
                        <param name="icon" value="icons/infodialogs/info.png" />
                        <param name="label" value="$LOCALIZE[31034]" />
                        <param name="onclick_1" value="RunScript(script.extendedinfo,info=extendedinfo,name=$INFO[ListItem.Title])" />
                        <param name="visible" value="System.hasAddon(script.extendedinfo) + String.IsEqual(ListItem.DbType,movie)" />
                    </include>
                    <include content="InfoDialogButton">
                        <param name="id" value="105" />
                        <param name="icon" value="icons/infodialogs/info.png" />
                        <param name="label" value="$LOCALIZE[31034]" />
                        <param name="onclick_1" value="RunScript(script.extendedinfo,info=extendedtvinfo,name=$INFO[ListItem.Title])" />
                        <param name="visible" value="System.hasAddon(script.extendedinfo) + [String.IsEqual(ListItem.DbType,tvshow) | String.IsEqual(ListItem.DbType,season)]" />
                    </include>
                    <include content="InfoDialogButton">
                        <param name="id" value="106" />
                        <param name="icon" value="icons/infodialogs/info.png" />
                        <param name="label" value="$LOCALIZE[31034]" />
                        <param name="onclick_1" value="RunScript(script.extendedinfo,info=seasoninfo,tvshow=$INFO[ListItem.TVShowTitle],season=$INFO[ListItem.Season])" />
                        <param name="visible" value="System.hasAddon(script.extendedinfo) + String.IsEqual(ListItem.DbType,episode)" />
                    </include>

Just try, for me I have this :

movie - open movie info
tvshow -open tvshow info
season - open tvshow info
episode - open episode info

I use latest Extended Info Script and latest Kodi build.

EDIT : Just see via context menu, on season it open season.

movie - open movie info
tvshow -open tvshow info
season - open season info
episode - open episode info

Your code "RunScript(script.extendedinfo,info=extendedinfo,name=$INFO[ListItem.Title])" is not correct for some movies it returns wrong movie (example for Beauty and the beast 2017, it return same movie but for 2014) because it use only $INFO[ListItem.Title]. Same for episodes.

With RunScript(script.extendedinfo,info=openinfodialog), it retun the good movie because it use DBID.

Impossible to have Season info via Dialog video info, I have try many thing.

For context menu I use :

Code:
if db_type == "movie":
        xbmc.executebuiltin("%sextendedinfo,dbid=%s,id=%s,name=%s)" % (BASE, dbid, remote_id, info.getTitle()))
    elif db_type == "tvshow":
        xbmc.executebuiltin("%sextendedtvinfo,dbid=%s,id=%s)" % (BASE, dbid, remote_id))
    elif db_type == "season":
        xbmc.executebuiltin("%sseasoninfo,tvshow=%s,season=%s)" % (BASE, info.getTVShowTitle(), info.getSeason()))
    elif db_type in ["actor", "director"]:
        xbmc.executebuiltin("%sextendedactorinfo,name=%s)" % (BASE, sys.listitem.getLabel()))

But for season it's not working on dialog video info.
 Estuary MOD V2 


Messages In This Thread
Estuary MOD V2 (UPDATED 12/02/17) - by iMak - 2017-02-12, 13:57
Estuary MOD V2 (UPDATED 12/02/17) - by iMak - 2017-02-12, 14:46
Estuary MOD V2 (UPDATED 12/02/17) - by iMak - 2017-02-13, 17:58
Estuary MOD V2 (UPDATED 12/02/17) - by iMak - 2017-02-14, 00:50
Estuary MOD V2 (UPDATED 12/02/17) - by iMak - 2017-02-14, 00:50
Estuary MOD V2 (UPDATED 12/02/17) - by iMak - 2017-02-14, 02:11
Estuary MOD V2 (UPDATED 12/02/17) - by iMak - 2017-02-14, 06:31
Estuary MOD V2 (UPDATED 12/02/17) - by iMak - 2017-02-14, 16:15
Estuary MOD V2 (UPDATED 12/02/17) - by iMak - 2017-02-14, 22:13
Estuary MOD V2 (UPDATED 12/02/17) - by iMak - 2017-02-15, 17:53
EPG - by Repoman - 2017-04-29, 20:28
RE: Estuary MOD V2 - KODI 18 (UPDATED 10/08/17) - by Guilouz - 2017-08-14, 00:18
Quit and Search - by terpsarlington - 2017-11-18, 03:35
RE: Quit and Search - by Guilouz - 2017-11-18, 03:41
RE: Quit and Search - by terpsarlington - 2017-11-18, 06:38
Genres Widget - by terpsarlington - 2017-11-19, 05:22
RE: Genres Widget - by Guilouz - 2017-11-19, 15:23
RE: Genres Widget - by terpsarlington - 2017-11-20, 00:21
Where are the API keys stored? - by mozomo - 2017-11-19, 17:36
Ratings - by terpsarlington - 2017-11-28, 00:08
RE: Ratings - by junias - 2017-11-28, 00:14
RE: Ratings - by Guilouz - 2017-11-28, 01:31
RE: Ratings - by terpsarlington - 2017-11-28, 03:25
RE: Ratings - by Guilouz - 2017-11-28, 04:24
Question on Whitelist option - by kaybird - 2018-06-15, 20:33
RE: Question on Whitelist option - by Guilouz - 2018-06-16, 02:08
Random titles? - by kaybird - 2018-06-28, 01:54
RE: Random titles? - by Guilouz - 2018-07-15, 10:48
Skin Helper Service error - by Picard - 2018-06-28, 04:51
RE: Skin Helper Service error - by redglory - 2018-06-28, 15:20
RE: Skin Helper Service error - by Guilouz - 2018-07-15, 10:49
Add main menu item? - by revhead - 2021-04-28, 12:33
RE: Add main menu item? - by Mahava - 2021-04-29, 01:17
Kodi 18 script.shortcuts issue - by Shayno - 2018-09-19, 01:31
empty Homescreen - by menou - 2021-07-22, 15:19
RE: empty Homescreen - by _BJ1 - 2021-07-25, 21:23
Logout Mark Read Team Forum Stats Members Help
Estuary MOD V2 - KODI 18 (UPDATED 17/01/19)17