Posts: 1
Joined: Sep 2013
Reputation:
0
Hi Mike,
I have issue on my intro. mp4 file. On previous Silvo released, the intro is working fine however on the latest release, my screen will be blinking (white colour) and Kodi will mot load. I have already converted the. mp4 with h.264 however, the issue still occur.
For temporary solution, I am disabling the intro. mp4. Advise please sir.
Thanks.
Posts: 19
Joined: Nov 2015
Reputation:
0
How can I go about installing this skin on my xbox1, is there a source file I can add so I can download the repo zip?
Posts: 2
Joined: Mar 2018
Reputation:
0
When playing a video I get no Video OSD i.e when I press pause. I can't see the menu where I can change the options like audio stream or subtitle stream.
I only see a percentage bar on bottom.
How to see the OSD while playing a movie?
Posts: 40
Joined: Oct 2015
Reputation:
0
Hey Mike.
As usual, excellent work on the skin, it’s awesome. I’m sure we all appreciate your hard work, at least I do.
Is it just me, or is the “Change fanart” option in the info view in the music library not there anymore in the latest Krypton update?
I can change artist thumb when in info view, but not fanart. I need to go through the “advanced artwork” options through the “C button” menu when highlighting an artis to change it.
Posts: 108
Joined: Aug 2011
Reputation:
0
Just installed this skin, and really like there customisation!
One question i have is if i can move the video playing menu to the top (one where you can pause, scan, subtitles etc), like in aeon nox 5 original. Plus if there is an option to press up and it goes directly to subtitles or down to audio settings (also like in aeon nox original).
Thank you!
Posts: 141
Joined: Apr 2014
Reputation:
7
2018-03-20, 04:48
(This post was last modified: 2018-03-20, 04:51 by coremailrx8.)
The <onup> is not on the target control (your button), it is on the main menu control because that it the control that is focused. So the main menu has, for example, <ondown> that will redirect from main menu control to the submenu control, and I believe, <onup> is the search button control, I may be wrong. You could bypass search button, for example, and replace that control number with your button control id. It is a little more complicated than that, because if you have widgets enabled, they work with <onup>, but you can play around. I am telling you by memory, so I may be off a little bit, so I'm sorry it is not a straight how-to.
I guess the concept is, when the focused control (the main menu) has <ondown>, that means, where does the focus goes when I hit arrow down?. So under main menu control, <ondown> goes to the submenu. Under the submenu control, <onup> returns focus to the main menu. So on the main menu control, you can try replacing, just to test, the onup tag with your button control id. On your button control id, you probably want to include <ondown> (since it is placed on the top> the main menu control id so it can return focus to the main menu when desired.
Hope this makes sense.