Launch "Recently played albums" with keypress
#1
I would like to add a shortcut to my keymap file so that when I press a certain key combo the Kodi library will automatically open the "Recently played albums" keypress.

I presume is will look semething like this ...

<key id="520234">ActivateWindow(Music, musicdb://xxxxxxxx/)</key>

But I can't figure out what the xxxxxxxx should be.

Thanks!
Reply
#2
Try one of these:

Code:
ActivateWindow(10502,musicdb://7/)

Code:
ActivateWindow(10502,musicdb://recentlyplayedalbums/)

Or Helix and newer (I believe)
Code:
ActivateWindow(10502,library://music/recentlyplayedalbums.xml/)

Tip:
Add the item to Kodi favourites (or Super Favourites) and then examine the xml
Reply
#3
@spoyser Thanks! That favorites trick is genius!

Code:
ActivateWindow(10502,library://music/recentlyplayedalbums.xml/)

Worked for me!
Reply

Logout Mark Read Team Forum Stats Members Help
Launch "Recently played albums" with keypress0