Can I use PM3.HD Library TvShows ListView on my plugin?
#1
Can i use this view on my plugins? I can't find proper id.

something like this code:
Code:
if (xbmc.getSkinDir() == "PM3.HD"):
    xbmc.executebuiltin('Container.SetViewMode(59)')
else:
    pass

Image
Reply
#2
You shouldn't really be doing it via SetViewMode. Instead, you should simply be setting the content type and relying on the skin to offer the appropriate view types for the user to select from.
Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not 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.


Image
Reply
#3
I didn't know that. Thanks for info. You are right, this is what i need Smile

Code:
xbmcplugin.setContent(int(sys.argv[1]), 'episodes')
Reply
#4
One more question. Can i activate Library mode inside plugin code?
Reply

Logout Mark Read Team Forum Stats Members Help
Can I use PM3.HD Library TvShows ListView on my plugin?0