Play an Album from Album Info screen

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
Hitcher Offline
Skilled Skinner
Posts: 9,921
Joined: Aug 2007
Reputation: 67
Location: Eastleigh, UK
Post: #31
All good here, thanks.

[Image: sig_zps3af3b48e.jpg]
find quote
`Black Offline
Skilled Skinner
Posts: 2,000
Joined: Apr 2009
Reputation: 49
Location: Germany
Post: #32
I just added a new property tracknr to the script (updated version available from ronies svn) which makes it possible to play tracks from the track list in the album info dialog. To do this you need to focus a button instead of the list. To give you an example, this is how the button looks in my skin:

Code:
<control type="button" id="9334">
    <onfocus condition="Container.Content(Artists)">SetFocus(50)</onfocus>
    <onleft condition="Container.Content(Albums)">SetFocus(9335)</onleft>
    <onup condition="Container.Content(Albums)">Control.Move(50,-1)</onup>
    <ondown condition="Container.Content(Albums)">Control.Move(50,1)</ondown>
    <onclick condition="Container.Content(Albums) + System.HasAddon(script.playalbum)">RunScript(script.playalbum,albumid=$INFO[ListItem.DBID]&amp;tracknr=$INFO[Container(50).ListItem.TrackNumber])</onclick>
</control>

Because the list gets focused if you click on an album in the artist information dialog, you also need to add this to the focusedlayout of the list container (id = "50"):
Code:
<control type="button">
    <onfocus condition="Container.Content(Albums)">SetFocus(9334)</onfocus>
</control>

[Image: xp1080.png]
find quote
Hitcher Offline
Skilled Skinner
Posts: 9,921
Joined: Aug 2007
Reputation: 67
Location: Eastleigh, UK
Post: #33
Nice addition, thanks.

[Image: sig_zps3af3b48e.jpg]
find quote
ronie Offline
Team-XBMC Member
Posts: 8,247
Joined: Jan 2009
Reputation: 108
Post: #34
updated in the addon repo as well.

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not PM or e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.
find quote
`Black Offline
Skilled Skinner
Posts: 2,000
Joined: Apr 2009
Reputation: 49
Location: Germany
Post: #35
Thanks.

[Image: xp1080.png]
find quote
Post Reply