(2014-02-02, 12:04)StinDaWg Wrote: Ya, that's what I'm using. It's just slow to populate the items in comparison to Nox 4. For instance, if I am zipping around the menus and then stop on tv shows, quickly hit the down arrow, it can take a second or 2 for the items to appear, even if I only have 1 item. Sometimes it won't take my input and I'll have to click down a second time. On Nox 4 it was instant with no delay. I'm using a quad core cpu so power is not the problem. If custom sub menus are disabled in skin options the population of sub menu items is 100% instant every time. The skin is lighter overall, so I don't understand why this one area renders slower than Nox 4.
It's slower because it uses the skin shortcuts script which is - every time you switch main menu items - waiting to be called by XBMC, building a new list, passing this list to XBMC and waiting for XBMC to display it. If you're willing to do some hacking, though, all submenu items can be loaded at once, and the visibility changed as you browse the main menu...
First update to the latest version on github (
https://github.com/unfledged/script.skinshortcuts)
Then load Aeon Nox's "Includes_Home.xml" in your favourite text editor. You need to add an additional property to each main menu item (they start around line 190) called "submenuVisibility". The value is "X" + the ID number of the menu item. So, for pictures - whose ID is 4:
Code:
<property name="submenuVisibility">X4</property>
Finally, at the bottom of the file replace the <content> tag of the CustomSubMenu include with
Code:
<content>plugin://script.skinshortcuts?type=submenu&mainmenuID=9000&group=X1,X2,X3,X4,X5,X6,X7,X8,X9,X10,X11,X12,X13,X101,X202,X303,X404,X505,X606</content>
Restart XBMC and now, once the script has loaded all the main menu items, switching between them should be much quicker.