Kodi Community Forum

Full Version: Video Extras Add-on Integration
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Love the skin, I was just wondering if there is any way to integrated the Video Extras Add-On: http://wiki.xbmc.org/index.php?title=Add-on:VideoExtras
I tried the manual skin modification according to the wiki but had no success.
Any help will be appreciated.

Thanks.
Hi.
Folow the wiki except for the
Code:
<control type="button" id="105">
    <description>Extras</description>
    <include>ButtonInfoDialogsCommonValues</include>
    <label>Extras</label>
    <onclick>XBMC.RunScript(script.videoextras,display,"$INFO[ListItem.FilenameAndPath]")</onclick>
    <visible>System.HasAddon(script.videoextras)
     + [Container.Content(movies) | Container.Content(episodes) | Container.Content(TVShows)]
     + IsEmpty(Window(movieinformation).Property("HideVideoExtrasButton"))</visible>
</control>
part

Use this instead.
Code:
<!----------------------EXTRAS----------------------------->
    <item id="105">
    <label>Extras</label>
    <onclick>XBMC.RunScript(script.videoextras,display,"$INFO[ListItem.FilenameAndPath]")</onclick>
    <visible>System.HasAddon(script.videoextras)
     + [Container.Content(movies) | Container.Content(episodes) | Container.Content(TVShows)]
     + IsEmpty(Window(movieinformation).Property("HideVideoExtrasButton"))</visible>
    </item>
    <!------------------------------------------------------->

place it below

Code:
<item id="12"><!-- Cover Zoom -->
    <label>31944</label>
    <onclick>Skin.Reset(artistzoom)</onclick>
    <onclick>Skin.SetBool(coverzoom)</onclick>
    <onclick>SetFocus(160)</onclick>
    </item>
(2014-03-17, 16:52)LinK69 Wrote: [ -> ]Hi.
Folow the wiki except for the
Code:
<control type="button" id="105">
    <description>Extras</description>
    <include>ButtonInfoDialogsCommonValues</include>
    <label>Extras</label>
    <onclick>XBMC.RunScript(script.videoextras,display,"$INFO[ListItem.FilenameAndPath]")</onclick>
    <visible>System.HasAddon(script.videoextras)
     + [Container.Content(movies) | Container.Content(episodes) | Container.Content(TVShows)]
     + IsEmpty(Window(movieinformation).Property("HideVideoExtrasButton"))</visible>
</control>
part

Use this instead.
Code:
<!----------------------EXTRAS----------------------------->
    <item id="105">
    <label>Extras</label>
    <onclick>XBMC.RunScript(script.videoextras,display,"$INFO[ListItem.FilenameAndPath]")</onclick>
    <visible>System.HasAddon(script.videoextras)
     + [Container.Content(movies) | Container.Content(episodes) | Container.Content(TVShows)]
     + IsEmpty(Window(movieinformation).Property("HideVideoExtrasButton"))</visible>
    </item>
    <!------------------------------------------------------->

place it below

Code:
<item id="12"><!-- Cover Zoom -->
    <label>31944</label>
    <onclick>Skin.Reset(artistzoom)</onclick>
    <onclick>Skin.SetBool(coverzoom)</onclick>
    <onclick>SetFocus(160)</onclick>
    </item>

Works like a charm! Thank you very much for your help.