InfoDialog current playing media in home?
#1
Hi,

I wonder if there is a way to get the music/video-infodialog of the currently playing video/song when in home.xml.
I was thinking of a hiddenlist, but I don't know which content path to use?

When using a ..playlist:// path i only get the full playlist:

<control type="list" id="999999">
    <width>500</width>
    <height>500</height>
    <orientation>vertical</orientation>
    <itemlayout height="36" width="1000">
        <control type="label">
            <label>$INFO[ListItem.Label]</label>
        </control>
    </itemlayout>
    <focusedlayout height="36" width="1000">
        <control type="label">
            <label>$INFO[ListItem.Label]</label>
        </control>
    </focusedlayout>
    <content>playlistmusic://</content>
</control>

Using a button, that sets the focus and calls info action works fine so far and info dialog gets shown:

<control type="button">
    <width>48</width>
    <height>48</height>
    <label/>
    <font />
    <texturefocus colordiffuse="$VAR[ColorHighlight]" flipx="true">osd/info.png</texturefocus>
    <texturenofocus colordiffuse="Dark2" flipx="true">osd/info.png</texturenofocus>
    <onclick>SetFocus(999999)</onclick>
    <onclick>Info</onclick>
</control>

But i have no idea, how to limit the playlist to the current playing item...

Anyone have an idea?
Reply
#2
What's wrong with using MusicPlayer.xxx and VideoPlayer.xxx infos?
Reply
#3
(2023-03-13, 18:11)Hitcher Wrote: What's wrong with using MusicPlayer.xxx and VideoPlayer.xxx infos?

Maybe I'm misunderstanding you, but I just wanted to use DialogVideoInfo.xml/DialogMusicInfo.xml dialog for that.
Reply
#4
<content limit="1">playlistmusic://</content>
Reply
#5
(2023-03-13, 18:46)Hitcher Wrote: <content limit="1">playlistmusic://</content>

I have already tried that too. It works until the next song is played.  Confused Because already played songs are not removed from the playlist. Sortby options also not work...
Reply



Logout Mark Read Team Forum Stats Members Help
InfoDialog current playing media in home?0
This forum uses Lukasz Tkacz MyBB addons.