Activating a listitem with python
#2
I had the same requirement. Nothing worked for me and I ended up with JSON-RPC calls: just move the focus and select the item:
python:
build_song_list(*bandcamp.get_album_by_url(url))
xbmc.executeJSONRPC(
'{"jsonrpc":"2.0","method":"Input.Down","id":1}')
xbmc.executeJSONRPC(
'{"jsonrpc":"2.0","method":"Input.Select","id":1}')
You can check full sourcecode on:
https://github.com/Virusmater/plugin.aud...x.bandcamp
Reply


Messages In This Thread
RE: Activating a listitem with python - by DimaKompot - 2020-05-18, 13:28
Logout Mark Read Team Forum Stats Members Help
Activating a listitem with python0