Music Partymode and MyMusicPlaylist.xml question
#1
If you start a PartyMode Playlist, Kodi always shows the Playlist View (MyMusicPlaylist.xml) after adding the 10 songs.
I tried a few skins and its always the same, is this Hard coded in kodi somehow?

I wannt to show the visualisation when starting a Party Playlist.

there is a work around to go the the visualisation when starting a Song, if you create a Custom_FullscreenEnabler.xml
Code:
<window type="dialog" id="3001">
    <allowoverlay>no</allowoverlay>
    <onload condition="!Window.IsActive(visualisation)">FullScreen</onload>
    <visible>Player.HasAudio + Skin.HasSetting(MusicAuto) + !Skin.HasSetting(Use_Startup_Playlist) + !SubString(Window(videolibrary).Property(TvTunesIsAlive),true)</visible>
    <controls></controls>
</window>

but Partymode Ignores this file.

I added
Code:
<onload condition="!Window.IsActive(visualisation)">ReplaceWindow(visualisation)</onload>
to MyMusicPlaylist.xml but than you cant select the playlist view anymore for obvious reasons.

any idea for a workaround?

PS: IntegerGreaterThan(MusicPlayer.Time,1) is more annoying than helpfull for me
Reply
#2
I had some success setting and clearing properties onload of playist and music viz but abandoned it due to all the unforeseen user interactions that might cause issues... I am also curious if anyone has any alternative ideas or suggestions Smile
Reply

Logout Mark Read Team Forum Stats Members Help
Music Partymode and MyMusicPlaylist.xml question0