- Moderator
- #841
Use the Trailers plugin instead.I have a problem. When i watch trailers from this plugin, they are not fullscreen, only small picture with many blackscreen around and somehow in the screen not in the middle. When i watch onlinevideos then all fullscreen, the same when i use trailers plugin. Is there a way where i can setup that the trailer plays in fullscreen or maybe you can do something ?
In the ShowTimes skin files, skinners can conditionally hide the Showtimes plugin button (ID 41) and use one from the Trailers plugins e.g ID 11899, 11900 or 11901.
https://github.com/damienhaynes/Trailers/wiki/Skin-Designers-Guide
The StreamedMP skin already does this but the ShowTimes plugin author @Nephilim can do that for the Titan/Default skins. An example of what you can do below from StreamedMP shows that if the Trailers plugin is installed then use the Trailers plugin otherwise use ShowTimes to play a trailer.
Code:
<control Style="skinbutton">
<description>Trailers...</description>
<type>button</type>
<id>11899</id>
<label>#Trailers.Translation.Trailers.Label...</label>
<onup>97258</onup>
<ondown>41</ondown>
<onright>11899</onright>
<onleft>11899</onleft>
<visible>control.isvisible(24)+plugin.isenabled(Trailers)</visible>
</control>
<control Style="skinbutton">
<description>Play Trailer</description>
<type>button</type>
<id>41</id>
<label>Play Trailer</label>
<onup>11899</onup>
<ondown>42</ondown>
<onright>41</onright>
<onleft>41</onleft>
<visible>control.isvisible(24)+!plugin.isenabled(Trailers)</visible>
</control>
Another thing to remember is to update the ID's for navigation, I attached a full xml from StreamedMP as example. There is also nothing stopping you putting a Trailer button in the List view by using another one of those IDs.