Kodi Community Forum

Full Version: How to navigate between virtual folders?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to navigate between virtual folders? Is there any way to go back to the previous directory via programming?
Can I use ActivateWindow() our Action() to navigate between virtual folders?

ex -> go to Add-ons:
xbmc.executebuiltin('ActivateWindow(Videos,addons://sources/video/)')

But I wanted to go to the "initial page of my add-on" , I tried but I did not succeed
goTarget = lambda link : xbmc.executebuiltin('container.update(%s)' % (link))

Using:

goTarget('plugin://plugin.video.test/videos/page3')

press back for going to previous window.