Kodi Community Forum
ISSUE: IMDB Trailers - Play Button Not Visible Matrix - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Amber (https://forum.kodi.tv/forumdisplay.php?fid=203)
+---- Thread: ISSUE: IMDB Trailers - Play Button Not Visible Matrix (/showthread.php?tid=377073)



ISSUE: IMDB Trailers - Play Button Not Visible Matrix - hernando - 2024-04-11

Hello,

When using the IMDB Trailers addon in Amber, when I go into the info of a specific movie, the "Play" button is NOT visible. So the trailer cannot be watched:
Image

The only way to be able to watch the trailer, is to do a "right-click" on the previous screen that lists all the trailers:

Image

This happens in my Windows, iOS, and Libreelec Kodi Matrix versions. When browsing my locally stored media, the Play button is properly visible.

I looked at the code in DialogVideoInfo.xml. I don't have the skills to figure out how to fix, but I suspect the code is here:
Code:
            <control type="button" id="8000" description="Play/browse">
                <visible>Control.IsEnabled(8)</visible>
                <height>90</height>
                <width min="210">auto</width>
                <align>center</align>
                <font>Details</font>
                <label>$VAR[VideoInfoButton8]</label>
                <!-- Online item -->
                <onclick condition="String.IsEmpty(ListItem.DBID)">Action(Close)</onclick>
                <!-- Local item -->
                <onclick condition="!Skin.HasSetting(Enable.TMDbHelper) + !String.IsEmpty(ListItem.DBID)">SendClick(8)</onclick>
                <onclick condition="!Skin.HasSetting(Enable.TMDbHelper) + !String.IsEmpty(ListItem.DBID)">Dialog.Close(all)</onclick>
                <!-- tmdb helper active, path is not empty -->
                <onclick condition="Skin.HasSetting(Enable.TMDbHelper) + !String.IsEmpty(ListItem.FileNameAndPath) + [String.IsEqual(ListItem.DBType,movie) | String.IsEqual(ListItem.DBType,episode) | String.IsEqual(ListItem.DBType,musicvideo)] + !String.IsEmpty(ListItem.DBID)">RunScript(plugin.video.themoviedb.helper,close_dialog=1134,playmedia='$ESCINFO[ListItem.FileNameAndPath]')</onclick>
                <!-- tmdb helper active, path is empty -->
                <onclick condition="Skin.HasSetting(Enable.TMDbHelper) + String.IsEmpty(ListItem.FileNameAndPath)">RunScript(plugin.video.themoviedb.helper,close_dialog=1134,playmedia='$ESCINFO[ListItem.FolderPath]')</onclick>
                <!-- Browse TV Show, embuary helper not active -->
                <onclick condition="!Skin.HasSetting(Enable.EmbuaryHelper) + [String.IsEqual(ListItem.DBType,tvshow) | String.IsEqual(ListItem.DBType,season)] + !String.IsEmpty(ListItem.DBID)">SendClick(8)</onclick>
                <onclick condition="!Skin.HasSetting(Enable.EmbuaryHelper) + [String.IsEqual(ListItem.DBType,tvshow) | String.IsEqual(ListItem.DBType,season)] + !String.IsEmpty(ListItem.DBID)">Dialog.Close(all)</onclick>
                <!-- Browse TV Show, embuary helper active -->
                <onclick condition="Skin.HasSetting(Enable.EmbuaryHelper) + [String.IsEqual(ListItem.DBType,tvshow) | String.IsEqual(ListItem.DBType,season)] + !String.IsEmpty(ListItem.DBID)">RunScript(script.embuary.helper,action=goto,path='"videodb://tvshows/titles/$INFO[ListItem.DBID]/"',target=videos)</onclick>
            </control>

Is there a way to fix this? It is not the most user friendly when using either the remote control, or the touch interface. The "Play" button is visible in all other skins line Auramod. I tried to compare the two files, but the code is very different.

Please help.

Thank you.


RE: ISSUE: IMDB Trailers - Play Button Not Visible Matrix - hernando - 2024-04-11

I do have both the Emby Helper and the TheMovieDB Helper addons installed.