How can I get Tracks and Album Description to both appear?
#1
How can I get the highlighted sections to appear at the same time. There are no visible conditions that I can find. It appears that when the button is pressed it makes the sections become visible. Can I have them both appear and remove the button?

Image

-------------------------

Image
Image
To learn more, click here.
Reply
#2
It's based on the toggle button (5) so it's not possible yet and besides the track listing doesn't actually represent the songs you physically have it's just the info from wherever XBMC scraped it.
Reply
#3
Scrap that post, it is possible as I just found out.


Make a default, hidden button that gets focused first-

PHP Code:
<control type="button" id="999">
    <
onfocus>SendClick(2001,5)</onfocus>
    <
onfocus>SendClick(2001,5)</onfocus>
    <
onfocus>YOUR_DEFAULT_CONTROL</onfocus>
</
control

And then use a list filled with the container 50's info -

PHP Code:
<control type="label">
    ...
    <
label>$INFO[Container(50).ListItem(0).Label]</label>
</
control>
<
control type="label">
    ...
    <
label>$INFO[Container(50).ListItem(1).Label]</label>
</
control

And Bob's your uncle.
Reply
#4
Hitcher Wrote:Scrap that post, it is possible as I just found out.


Make a default, hidden button that gets focused first-

PHP Code:
<control type="button" id="999">
    <
onfocus>SendClick(2001,5)</onfocus>
    <
onfocus>SendClick(2001,5)</onfocus>
    <
onfocus>YOUR_DEFAULT_CONTROL</onfocus>
</
control

And then use a list filled with the container 50's info -

PHP Code:
<control type="label">
    ...
    <
label>$INFO[Container(50).ListItem(0).Label]</label>
</
control>
<
control type="label">
    ...
    <
label>$INFO[Container(50).ListItem(1).Label]</label>
</
control

And Bob's your uncle.


The labels :

<label>$INFO[Container(50).ListItem(0).Label]</label>

Arent pulling any info, they are blank. ??
Image
To learn more, click here.
Reply
#5
igotdvds Wrote:The labels :

<label>$INFO[Container(50).ListItem(0).Label]</label>

Arent pulling any info, they are blank. ??

why not use 1 sendclick so you don't have to create the list yourself?

for the album review, remove the default textbox with id="4"
and create a new one with $INFO[ListItem.Property(Album_Description)]
Do not PM or e-mail Team-Kodi members directly asking for support.
Always read the Forum rules, Kodi online-manual, FAQ, Help and Search the forum before posting.
Reply
#6
ronie Wrote:why not use 1 sendclick so you don't have to create the list yourself?

for the album review, remove the default textbox with id="4"
and create a new one with $INFO[ListItem.Property(Album_Description)]

Thanks Ronie. Hitcher got it right before you posted. Thanks to both of you. Smile
Image
To learn more, click here.
Reply

Logout Mark Read Team Forum Stats Members Help
How can I get Tracks and Album Description to both appear?0