2013-11-23, 13:46
Hi All,
I know that several skins include the hooks by default for TvTunes:
http://wiki.xbmc.org/index.php?title=Add-on:TvTunes
Version 4.0.0 has just been pushed to the official add-on repo, this version adds several new features and options. The existing hooks in skins should work OK, however there are changes that can be made to improve things or enable new features.
It would be great if skin owners could update their hooks if they are able to:
All the details are available on the wiki, based on the changes needed for Confluence. For ease of reference I will include the details here as well.
MyVideoNav.xml
DialogVideoInfo.xml
Add to the top of the file [Triggers the start of the theme playing]:
Add to near the foot of the file after the last control statement:
If you do have support 4.0.0 please would you be able to post a message so that I can update the Wiki with Skins that already have built-in support.
Thank you
Rob
I know that several skins include the hooks by default for TvTunes:
http://wiki.xbmc.org/index.php?title=Add-on:TvTunes
Version 4.0.0 has just been pushed to the official add-on repo, this version adds several new features and options. The existing hooks in skins should work OK, however there are changes that can be made to improve things or enable new features.
It would be great if skin owners could update their hooks if they are able to:
All the details are available on the wiki, based on the changes needed for Confluence. For ease of reference I will include the details here as well.
MyVideoNav.xml
Code:
<onload condition="Skin.HasSetting(ActivateTvTunes) + System.HasAddon(script.tvtunes)">
XBMC.RunScript(script.tvtunes,backend=True)
</onload>
DialogVideoInfo.xml
Add to the top of the file [Triggers the start of the theme playing]:
Code:
<onload condition="Skin.HasSetting(ActivateTvTunes) + System.HasAddon(script.tvtunes)">
XBMC.RunScript(script.tvtunes,backend=True)</onload>
Add to near the foot of the file after the last control statement:
Code:
<control type="button" id="100">
<description>Fetch TvTunes stuff</description>
<include>ButtonInfoDialogsCommonValues</include>
<label>31127</label>
<onclick>XBMC.RunScript(script.tvtunes,mode=solo)</onclick>
<visible>Skin.HasSetting(ActivateTvTunes) + System.HasAddon(script.tvtunes) +
[Container.Content(TVShows) | Container.Content(movies)] +
IsEmpty(Window(movieinformation).Property("TvTunes_HideVideoInfoButton"))</visible>
</control>
If you do have support 4.0.0 please would you be able to post a message so that I can update the Wiki with Skins that already have built-in support.
Thank you
Rob