Grüß Eruch,
bei der Version 12 von XBMC konnte ich neben dem Wetter ganz leicht mit editieren von XMLs eine Custom Playlist dem Startmenü hinzufügen
"Home.xml" fügte ich folgende Passagen hinzu
Code
<!-- This section creates a new Menu called "myPlaylists" --> <control type="grouplist" id="myPlaylists"> <include>HomeSubMenuCommonValues</include> <onleft>myPlaylists</onleft> <onright>myPlaylists</onright> <visible>Container(9000).HasFocus(buttPlaylists)</visible> <include>HomeSubMenuPlaylists</include> <!-- Buttons for the grouplist --> </control> <!-- This section creates the custom dropdown sub-menu. --> <!-- Use the name included in the GroupList above. --> <item id="buttPlaylists"> <!-- This is the actual category button --> <label>myPlaylists</label> <!-- <onclick>ActivateWindow(Videos,special://profile/playlists/video oder special://videoplaylists oder Videos,Playlists,return)</onclick> --> <onclick>ActivateWindow(Videos,Playlists,return)</onclick> <icon>-</icon> <thumb>-</thumb> <visible>!Skin.HasSetting(HomeMenuNoWeatherButton)</visible> </item>
Weiters editierte man die "IncludesHomeMenuItems.xml"
Code
<!-- Untermenüs für den Playlist Button --> <include name="HomeSubMenuPlaylists"> <control type="image" id="sbmPlaylistsLeft"> <width>35</width> <height>35</height> <texture border="0,0,0,3" flipx="true">HomeSubEnd.png</texture> </control> <control type="button" id="sbmPlaylists1"> <include>ButtonHomeSubCommonValues</include> <label>PC-Videos</label> <onclick>ActivateWindow(Videos,special://profile/playlists/video/PC_Win8_Video.xsp,return)</onclick> <visible>True</visible> </control> <control type="button" id="sbmPlaylists2"> <include>ButtonHomeSubCommonValues</include> <label>1TB - Animation</label> <onclick>ActivateWindow(Videos,special://profile/playlists/video/Extern_1TB.xsp,return)</onclick> <visible>True</visible> </control> <control type="button" id="sbmPlaylists3"> <include>ButtonHomeSubCommonValues</include> <label>2TB - MKVs</label> <onclick>ActivateWindow(Videos,special://profile/playlists/video/Extern_2TB.xsp,return)</onclick> <visible>True</visible> </control> <control type="button" id="sbmLectFiles"> <include>ButtonHomeSubCommonValues</include> <label>744</label> <onclick>ActivateWindow(Videos,Files,return)</onclick> </control> <control type="image" id="sbmPlaylistsRight"> <width>35</width> <height>35</height> <texture border="0,0,0,3">HomeSubEnd.png</texture> </control> </include>
Wie geht das mit der V13
Hier gibt es zum Teil gar nicht mehr die XMLs
Würde mich freuen, wenn mir jemand sagen könnte wie ich das derzeit ändern muss - ich vermisse diesen Menüeintrag so sehr
Greet`s ERich