Adding File Manager To Main Menu [SOLVED] - 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: Skin Archive (https://forum.kodi.tv/forumdisplay.php?fid=179) +----- Forum: Ace 2 (https://forum.kodi.tv/forumdisplay.php?fid=190) +----- Thread: Adding File Manager To Main Menu [SOLVED] (/showthread.php?tid=218303) |
Adding File Manager To Main Menu [SOLVED] - miketurn1234 - 2015-02-13 Hello Everyone, I am currently using.... Windows 7 64Bit SP1 Gotham 13.2 Ace Skin 6.0.2 Not sure if I overlooked this somewhere, but does anyone know of an easy way to add the "File Manager" as an item in the Main Menu? I tried messing around with using the code that was used to get it to show up in the "Settings" submenu but I was unsuccessful because I don't know much about XML coding. If anyone has any information they would like to share please do so. Thank you to everyone who reads this post. RE: Adding File Manager To Main Menu - extremeaudio - 2015-02-17 If you use the add-on superfavorites you can add almost anything to the "Favorite" custom menu item, which includes file manager. RE: Adding File Manager To Main Menu - miketurn1234 - 2015-03-03 Thank you for your response I didn't realize that anyone replied. Although I have not tried this out, I read about it a while back. I ended up going the route of editing the xml files which worked great because I could also decide where the "file manager" would end up on my main menu list. Thanks Again RE: Adding File Manager To Main Menu - extremeaudio - 2015-03-03 Could you share your method also? Which xml file did you edit? To reorder main menu items in ace you can modify includesVIPmenu.xml but I don't know how to ADD a main menu item using that. RE: Adding File Manager To Main Menu - Steve_uk - 2015-03-06 Hi guys the file manager is already there If you go to settings and press down for the sub menu you have to keep pressing right as there's extra menus off screen RE: Adding File Manager To Main Menu - miketurn1234 - 2015-03-10 Sorry I didn't realize anyone else responded to this post ExtremeAudio No problem, there may be better ways, but this is what I did to add the File Manager to my home menu as a main menu item. Note that I am new at this so not everything may work correctly, for example submenu's, etc. but this could at least get you started. You are correct, the IncludesVIPmenu.xml is the file to use. Within this file you will see a whole bunch of <item id="#"> tags Choose where you want the NEW item to appear on your list by placing the following code between the "item id" tags you desire to place this NEW item. CODE TO USE: Code: <item id="90"> CODE EXPLAINED (AS BEST I CAN AT THE MOMENT): Code: <item id="90"> As a rule of thumb, make a copy of your xml file (IncludesVIPmenu.xml) before you edit it just in case, this way you can always revert back if things don't work out correctly. Anyways hope this helps |