Does this skin support Skin Shortcuts?
#1
Just tried to implement this to no avail, but then looking at supported skins, doesnt look like it's an option.

Can you advise please? 

https://kodi.wiki/view/Add-on:Skin_Shortcuts
Reply
#2
Yes.
If in doubt look in the addon.xml...
Quote:     <requires>
        <import addon="xbmc.gui" version="5.12.0"/>
        <import addon="script.skinshortcuts" version="0.4.0"/>
        <import addon="service.library.data.provider" version="0.1.0"/>
        <import addon="script.skin.helper.service" version="0.0.1"/>
        <import addon="script.extendedinfo" version="3.0.0"/>
        <import addon="script.globalsearch" version="5.0.0"/>
        <import addon="script.image.resource.select" version="0.0.5"/>
        <import addon="script.toolbox" version="1.0.0"/>
        <import addon="plugin.program.autocompletion" version="1.0.1"/>
        <import addon="resource.images.weathericons.white" version="0.0.6"/>
    </requires>
Reply
#3
thanks will need to check what I was doing wrong then :p
Reply
#4
just tried and cant get it to work even following the addon instructions....

created a simple overrides.xml and placed in %appdata%\kodi\userdata

Code:
 <?xml version="1.0" encoding="UTF-8"?>
 <overrides>
   <override action="Testing">
<action>cleanlibrary(video,true)</action>
<action>updatelibrary(video,true)</action>
<action>cleanlibrary(video,true,true,true,true)</action>
   </override>
 </overrides

then called Testing from the menu shortcut

nothing seems to run Sad
Reply
#5
Have you read the documentation in the addon folder?  There's a ton of it, it looks amazingly (unusually) helpful.
A quick look in script.skinshortcuts\resources\docs\advanced\overrides.md and I found:
Quote:# Overrides.xml

The overrides.xml file is used by many of the advanced functions of Skin Shortcuts to define how they will behave, and what they will show. See individual topics in [Advanced Usage](./Advanced Usage.md) for details of the specific elements that each function uses.

The overrides.xml file needs to be in a shortcuts folder in your skins directory. All content goes within an `<overrides />` element.

```
<?xml version="1.0" encoding="UTF-8"?>
<overrides>
    <!-- All elements here -->
</overrides>
If you've read all that documentation and still struggling I'd think the skinshortcuts thread would be the best place to ask.
Reply
#6
sorry been away, thanks for the reply.... will take a look now Smile
Reply

Logout Mark Read Team Forum Stats Members Help
Does this skin support Skin Shortcuts?0