2015-09-04, 06:55
Now that the CinemaVision addon is in open beta (a replacement for Cinema Experience) would you consider integrating it into the skin? Maybe in the context menu when you are on a movie or in the movie information screen? Thanks a lot for considering - I think the skin is great. I use it with a Raspberry Pi 2 and it is fast and nice.
This is copied from the addon announcement thread
How to Integrate CinemaVision
We recommend that you add a button to your skins DialogVideoInfo.xml file. The button code below should work, and of course you'll want to change the ID (listed as 00 below) of the button so that it doesn't conflict with another button in your skin.
This is copied from the addon announcement thread
How to Integrate CinemaVision
We recommend that you add a button to your skins DialogVideoInfo.xml file. The button code below should work, and of course you'll want to change the ID (listed as 00 below) of the button so that it doesn't conflict with another button in your skin.
Code:
<control type="button" id="00">
<description>CinemaVision</description>
<include>ButtonInfoDialogsCommonValues</include>
<label>CinemaVision</label>
<onclick>Dialog.Close(MovieInformation)</onclick>
<onclick>RunScript(script.cinemavision,experience)</onclick>
<visible>System.HasAddon(script.cinemavision) + [Container.Content(movies) | Container.Content(tvshows) | Container.Content(episodes)]</visible>
</control>