MediaStream Redux Add menu items

If you need any help with XBMC4XBOX, such as installing or using the software, please post it in here.
Post Reply
User avatar
WhiteSpy
Posts: 16
Joined: Sun Oct 28, 2012 2:55 pm

MediaStream Redux Add menu items

Post by WhiteSpy »

Still trying to get a music video button that works correctly, I noticed in the Home.xml that the control labels are numbers rather than actual names. Is this page looking up names from another .xml sheet, if so which one?

code: <control type="button" id="90101">
<include>ButtonHomeSubCommonValues</include>
<label>342</label>
<onclick>ActivateWindow(VideoLibrary,MovieTitles,return)</onclick>
<visible>Library.HasContent(Movies)</visible>
</control>

<control type="button" id="90102">
<include>ButtonHomeSubCommonValues</include>
<label>20343</label>
<onclick>ActivateWindow(VideoLibrary,TvShowTitles,return)</onclick>
<visible>Library.HasContent(TVShows)</visible>
</control>


<control type="button" id="90103">
<include>ButtonHomeSubCommonValues</include>
<label>20389</label>
<onclick>ActivateWindow(VideoFiles,MusicVideos)</onclick>
<visible>Library.HasContent(MusicVideos)</visible>
</control>
<control type="button" id="90104">
<include>ButtonHomeSubCommonValues</include>
<label>744</label>
<onclick>ActivateWindow(VideoFiles)</onclick>
</control>
<control type="button" id="90105">
<include>ButtonHomeSubCommonValues</include>
<label>14022</label>
<onclick>ActivateWindow(VideoLibrary)</onclick>
<visible>Library.HasContent(Videos)</visible>
</control>
Post Reply