[MOD] home-menu hacking - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67) +---- Forum: Confluence (https://forum.kodi.tv/forumdisplay.php?fid=125) +---- Thread: [MOD] home-menu hacking (/showthread.php?tid=65964) Pages:
1
2
|
[MOD] home-menu hacking - zosky - 2010-01-03 the animation in this new skin is quite smooth, thanks Jezz. i've figured out how to personalise the main menu & i hope others can benefit from some steps
props where props are due here i've added a sub-menu for leo's launcher ( & some emu action ) ps. if <hitrect> does what i think, this is a really cool addition to the movie list and home menu + the position of the sub-menu on different levels... LOVE IT!!! thnx again - spec_8472 - 2010-01-03 Oh yes, this is exactly what I was looking for. Ñow comes the problem, I am able to add a new menu item "concert" but I do not succeed in adding a submenu. Can you please post your "games" menu xml code? Thank you! - boyofford - 2010-01-04 Quick question, if i copy the confluence skin folder to the skins folder where you can add additional skins(i forget where on my linux computer as i'm not on it at the mo) will this overide the original skin folder? and therefore avoid upgrade problems? - zosky - 2010-01-04 @boyofford, yes thats exactly what i've done. Code: cp -dR /usr/share/xbmc/skin/Confluence ~/.xbmc/skin/ @spec_8472, here is my games sub-menu. make sure
Code: <control type="grouplist" id="9018"> - virtualhours - 2010-01-24 i made a new main-menu: <item id="12"> <label>Emu|Appz</label> <onclick>runPlugin(plugin://programs/Launcher)</onclick> <icon>special://skin/backgrounds/programs.jpg</icon> <thumb>$INFO[Skin.String(Home_Custom_Back_Programs_Folder)]</thumb> </item> but Launcher don´t starts when i go to programms / plugins / launcher it will starts normlly can u help me? thx - mcborzu - 2010-01-24 Getting those correct paths are always tricky...what I do is add it to favorites, then open up favorites.xml and grab the path from there. This is what I got from my favorites.xml: Quote:ActivateWindow(10001,plugin://programs/Launcher/) This is what I got to directly link to N64: Quote:ActivateWindow(10001,plugin://programs/Launcher/?N64) - zosky - 2010-01-25 mcborzu has the right idea, thats how i found out what to use also. for reference runPlugin is for when you're pointing to an application Code: <onclick>[b]runPlugin[/b](plugin://programs/Launcher/?Doom3)</onclick> Code: <onclick>[b]ActivateWindow[/b](Programs,plugin://programs/Launcher/</onclick> - virtualhours - 2010-01-25 Code: <onclick>[b]ActivateWindow[/b](Programs,plugin://programs/Launcher/</onclick> will don´t work for me - reiss - 2010-04-15 Hi Guys I'm Trying to Add Enigma2 Plugin to main menu or a submenu to Live TV here is what I've done <control type="button" id="90182"> <include>ButtonHomeSubCommonValues</include> <label>dream1</label> <onclick>runscript(special://home/plugins/video/Enigma2/default.py,limit=4)</onclick> I can see Dream1 on a Live Tv sub menu but as soon as I click on it I receive ERROR SCRIPT FAIL! message ,,, I normally run it under videos>Plugins Menu without any Problems Does anyone have any idea whats wrong here Thanx in advance... - Mrkennedy - 2010-05-02 Where can i find the favorites.xml in winscp? found it was still in root - 3dluis - 2010-05-02 Hello, can anyone write the code to add a anime section as a sub menu in the Videos section of confluence. So Movies, Tv Shows then Anime - xbs08 - 2010-05-02 This was for MS_ReduX but it should work with Confluence... If you need an extra Videos submenu button add the following code to Home.xml - Line 432ish All you need to do next is change YourLabel and YourPlaylist to whatever you want and create a playlist giving it the name you choose for YourPlaylist PHP Code: <control type="button" id="90108"> - Mrkennedy - 2010-05-03 Hi guys, managed to add a blu ray sub menu to my movies page, and managed to source it to my blu ray source on my server. But is there a way to get it in libary mode as would like to use it withthe DVD case mod the actor, name recently added all have libary mode active thanks - 3dluis - 2010-05-03 I'd like to know that aswell. - 3dluis - 2010-05-03 I manage to get an anime section into the Confluence skin doing this: Code: <control type="button" id="90103"> I can view library mode however it doesn't give me all the options of library mode that Tv shows and Movies has but when I also scrape the anime information, It works but it also transfers the anime to the tvshow section which i don't want. What do i do? |