v18 D.I.Y SimplePlaylists plug in and widgets
#1
install SimplePlaylists plug in
add this to AppData\Roaming\Kodi\userdata\keymaps
xml:
<keymap>
   <global>
       <keyboard>
    <f2>RunPlugin(plugin://script.simpleplaylists/?mode=addCurrentUrl)</f2>
     <f4>Skin.ToggleSetting(HomeMenuNocustom3Button)</f4>
           <F5>XBMC.ReloadSkin()</F5>
           <F7>Notification(Testing 123,Hello world)</F7>
           <F8>Skin.ToggleDebug()</F8>
       </keyboard>
   </global>
</keymap>

make playlists by pressing F2  only 1 item needs to be added to create playlists i used movie widget and  tv widget
goto addons left click on SimplePlaylists and add your  playlists to favourites
open\AppData\Roaming\Kodi\userdata\favourites.xml
xml:

<favourites>
       <favourite name="Video: movie widget">ActivateWindow(10025,&quot;plugin://script.simpleplaylists/?mode=showPlaylist&amp;url=Video%3a%20movie%20widget&quot;,return)</favourite>
    <favourite name="Video: tv widget">ActivateWindow(10025,&quot;plugin://script.simpleplaylists/?mode=showPlaylist&amp;url=Video%3a%20tv%20widget&quot;,return)</favourite>
</favourites>
you need to copy plugin://script.simpleplaylists/?mode=showPlaylist&amp;url=Video%3a%20movie%20widget this will be your playlist name
now open home.xml
find <control type="group" id="5000">video
find </include> now add thit
xml:

<include content="WidgetListPoster" condition="Library.HasContent(movies) ">
       <param name="content_path" value="plugin://script.simpleplaylists/?mode=showPlaylist&amp;url=Video%3a%20movie%20widget"/>
       <param name="widget_header" value="movie widget"/>
       <param name="widget_target" value="videos"/>
       <param name="list_id" value="5195"/>
      </include>
change plugin://script.simpleplaylists/?mode=showPlaylist&amp;url=Video%3a%20movie%20widget with your favourites link
  <param name="widget_header" value="movie widget"/> is your name for the play list

 <param name="list_id" value="5195"/> look at where you place it and change the number so it is higher then the one above and lower then the one beneath

for tv shows <control type="group" id="6000">

xml:

<include content="WidgetListPoster" >
       <param name="content_path" value="plugin://script.simpleplaylists/?mode=showPlaylist&amp;url=Video%3a%20tv%20widget"/>
       <param name="sortby" value="tv widget"/>
       <param name="sortorder" value="descending"/>
       <param name="widget_header" value="tv widget"/>
       <param name="widget_target" value="videos"/>
       <param name="list_id" value="6150"/>
      </include>
Reply
#2
Image
Image
three sided coin flip
Reply

Logout Mark Read Team Forum Stats Members Help
D.I.Y SimplePlaylists plug in and widgets0