Release plugin.video.themoviedb.helper - Access to TheMovieDb API for Skinners
@jurialmunkey

Can I ask you how and if it is possible to open the "context menu" -> "Browse lists", directly via a button in the skin, such as: <onclick></onclick>, without going through different context menus?

If that wasn't possible, I was trying to replicate some important information containing in "Browse lists", in order to get it via a shortcut.


For example the elements: Fanart, Poster, Keywords, etc... which are referenced here:
https://github.com/jurialmunkey/plugin.v...ts-Related


In particular taking "Fanart" as a reference.

I tried to build a list in a window to show all the "Fanarts" of the movie with an ID already assigned for now, like this:

But unfortunately it doesn't work because I don't understand how to use it:

plugin://plugin.video.themoviedb.helper?info=fanart&tmdb_type=movie&tmdb_id=348


XML code:

xml:
<control type="list" id="200">
                <left>95</left>
                <top>78</top>
                <width>750</width>
                <height>561</height>
                <pagecontrol>60</pagecontrol>
                <scrolltime>200</scrolltime>
                <itemlayout height="40" width="750">
                    <control type="label">
                        <description>label</description>
                        <left>10</left>
                        <top>0</top>
                        <width>700</width>
                        <height>40</height>
                        <font>font13</font>
                        <textcolor>grey2</textcolor>
                        <selectedcolor>selected</selectedcolor>
                        <align>left</align>
                        <aligny>center</aligny>
                        <label>$INFO[Container(100).ListItem.label]</label>
                    </control>
                </itemlayout>
                <focusedlayout height="40" width="750">
                    <control type="label">
                        <description>label</description>
                        <left>10</left>
                        <top>0</top>
                        <width>700</width>
                        <height>40</height>
                        <font>font13</font>
                        <textcolor>white2</textcolor>
                        <selectedcolor>selected</selectedcolor>
                        <align>left</align>
                        <aligny>center</aligny>
                        <label>$INFO[Container(100).ListItem.label]</label>
                    </control>
                </focusedlayout>
            </control>
        
            <control type="list" id="100">
                <description>Container Fanart</description>
                <width>1</width>
                <height>1</height>
                <left>-1280</left>
                <content>$INFO[plugin://plugin.video.themoviedb.helper?info=fanart&tmdb_type=movie&tmdb_id=348]</content>
            </control>

(yes, I think I made some mess...)


How can I show a list with the "name/dimension" of the fanart and then open it?

As in this case:

Image


Thank you so much for your help 🙏
If i helped you, you can thank me with a thumbs up 👍 below, thanks 🙏.
Kodi 20.x stable release | Skin Confluence (by Jezz_X)
I like editing skins ❤
Reply


Messages In This Thread
RE: TheMovieDB Helper - by jurialmunkey - 2019-07-31, 11:47
RE: plugin.video.themoviedb.helper - Access to TheMovieDb API for Skinners - by Andrea1998 - 2023-09-10, 16:16
Logout Mark Read Team Forum Stats Members Help
plugin.video.themoviedb.helper - Access to TheMovieDb API for Skinners2