Kodi Community Forum
Solved Is it possible Music to open Albums ? - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Amber (https://forum.kodi.tv/forumdisplay.php?fid=203)
+---- Thread: Solved Is it possible Music to open Albums ? (/showthread.php?tid=188798)



Is it possible Music to open Albums ? - denz - 2014-03-11

Can Music be configured to open Albums ? In the settings you can configure to open Artists but it would be great to have an options to open Albums


RE: Is it possible Music to open Albums ? - denz - 2014-03-11

Found the answer had to change Includes.xml file and change the first onclick condition from root to Albums.

<item id="6" description="Music">
<visible>!Skin.HasSetting(plexbmc)</visible>
<visible>!Skin.HasSetting(Music.Hide)</visible>
<label>$LOCALIZE[2]</label>
<thumb fallback="special://skin/backgrounds/Music.jpg">$INFO[Skin.String(Music.Background)]</thumb>
<onclick condition="Library.HasContent(Music) + !Skin.HasSetting(ArtistView)">ActivateWindow(MusicLibrary,Albums)</onclick>
<onclick condition="!Library.HasContent(Music)">ActivateWindow(MusicFiles,root)</onclick>
<onclick condition="Library.HasContent(Music) + Skin.HasSetting(ArtistView)">ActivateWindow(MusicLibrary,Artists)</onclick>
</item>


RE: Is it possible Music to open Albums ? - psysfaction - 2014-04-29

Great this might come in handy