(2019-08-18, 15:12)Duimon Wrote: (2019-08-17, 19:08)Duimon Wrote: (2019-08-16, 13:45)Duimon Wrote: While I can import games to RCB using another skin and have a workaround for the view mode not being remembered... I still cannot get gameplay videos to play. I ask again for some help with this issue. I believe it has something to do with ViewGames.xml.
Actually... none of the RCB artwork shows except the posters (boxfront). None of the backgrounds show and none of the traditional RCB artwork is there. I can get the gameplay videos to play by using the MQ7 ViewsGames.xml in place of MQ8 ViewGames.xml. All the artwork behaves as expected in other skins so I am convinced it is an MQ8 RCB*.xml thing.
Please! Why have any script-RCB*.xml files in the MQ8 xml folder if noone cares enough to support them?
Look... I am convinced this fix would be child's-play for one of you Kodi masters to fix... All I am asking is for someone to take a look. It would mean a lot to me.
OK. I have it all figured out except the gameplay videos. MQ8 wants to play a trailer instead of the gameplay video. Is this something I can fix by moving/renaming my gameplay videos?
OK. Since I am not a pro at this... it took me quite a lot of digging and trial and error... but. It turns out that there was some omitted code from previous RCB skin XMLs.
<control type="button">
<include>InvisibleButton</include>
<animation effect="fade" start="100" end="100" time="150" delay="500" condition="true">Focus</animation>
<onfocus>PlayMedia($ESCINFO[ListItem.Property(gameplaymain)],1)</onfocus>
<visible>![String.IsEmpty(ListItem.Property(autoplayvideomain)) | String.IsEmpty(ListItem.Property(gameplaymain))] + Skin.String(multiplexgamespanel,alwayson)</visible>
</control>
Needed to be inserted into the MQ8 VeiwGames.xml in the Multiplex section, just before the lines:
</focusedlayout>
</control>
<control type="scrollbar" id="60"
And the following in includes.xml
</include>
<include name="InvisibleButton">
<left>-30</left>
<top>-30</top>
<width>1</width>
<height>1</height>
<label></label>
<font></font>
<texturenofocus></texturenofocus>
<texturefocus></texturefocus>
</include>
Works now just like MQ7 with the 2.1.3 version of RCB from the repository. Import in MQ8 even works. Still need the view settings fix which is an RCB thing and addressed in the RCB thread..
here
Edit: Seems the additional artwork doesn't display on the info screen :-( Not perfect but I think I can live with it if I have to. I really have no idea where to start looking to fix that.
Edit2: Removed the top portion of the code since panel always on is hard coded now.