2019-03-12, 02:34
2019-03-12, 03:26
I love the new skin, thank you.
I am having trouble getting My Theme to work. I am using the same folder structure as I did with MQ 7, but when I select the path to My Theme, all I get are black backgrounds on every menu.
Has anyone else tried My Theme, and got it to work?
I'm running LibreELEC on a Intel NUC.
Thanks
I am having trouble getting My Theme to work. I am using the same folder structure as I did with MQ 7, but when I select the path to My Theme, all I get are black backgrounds on every menu.
Has anyone else tried My Theme, and got it to work?
I'm running LibreELEC on a Intel NUC.
Thanks
2019-03-12, 03:32
@dakh
Have a change in my theme, it's now a single folder with images inside, has instructions about when selecting the option in skin settings, themes, my theme.
If prefer multiples images, use the option Change Backdrop (multiple images) via customize main menu, need point folder for each item in main menu.
Have a change in my theme, it's now a single folder with images inside, has instructions about when selecting the option in skin settings, themes, my theme.
If prefer multiples images, use the option Change Backdrop (multiple images) via customize main menu, need point folder for each item in main menu.
2019-03-12, 04:11
So, couple things I cannot seem to figure out. How can I change the order of the Main Menu items? I cant find how to MOVE UP / DOWN the ordering of the items.
Also, the startup pages are limited. I'd like to be able to select one of my Main Menu items (Movies. Or a custom Smart Playlist).
Any help on these would be great. Thanks! Beautiful skin!!
Also, the startup pages are limited. I'd like to be able to select one of my Main Menu items (Movies. Or a custom Smart Playlist).
Any help on these would be great. Thanks! Beautiful skin!!
2019-03-12, 04:34
(2019-03-12, 04:11)SkyHawk_Delta Wrote: So, couple things I cannot seem to figure out. How can I change the order of the Main Menu items? I cant find how to MOVE UP / DOWN the ordering of the items.Save each of your Main Menu items to "storage" (right side) and then use those saved storage items to replace the Main Menu item to the left. There is no other way of doing this, at least none that I can see. It is simple once you get the hang of it.
Also, the startup pages are limited. I'd like to be able to select one of my Main Menu items (Movies. Or a custom Smart Playlist).
Any help on these would be great. Thanks! Beautiful skin!!
*** Backup your original skin first. ***
2019-03-12, 08:51
(2019-03-11, 13:36)Wanilton Wrote:Hi,(2019-03-11, 11:01)Holzfred Wrote: Good Morning Wanilton,Work for me, check if have access to download, click here
your Repo is down? Try to install the colored flags…
All the Best
Uwe
absolute strange… At home no, at work yes… Same Provider (Unitymedia) Same router… It seems like I have Problems with http://
Try to find...
Uwe
2019-03-12, 12:49
(2019-03-11, 13:36)Wanilton Wrote:Hello Vanilton,(2019-03-11, 11:01)Holzfred Wrote:Work for me, check if have access to download, click here
doesnt work for me.
Have u tried animated fanarts ?
2019-03-12, 14:53
(2019-03-12, 01:37)Wanilton Wrote: In skin settings/colors, change textures black to white.Thanks, I'll try.
In skin settings/themes, choose COLD option
For get themes, check link post #231
another question:
Why is there no 3D list view in the movie library and series like in MQ7?
2019-03-12, 15:18
(2019-03-12, 14:53)razserv2010 Wrote:(2019-03-12, 01:37)Wanilton Wrote: In skin settings/colors, change textures black to white.Thanks, I'll try.
In skin settings/themes, choose COLD option
For get themes, check link post #231
another question:
Why is there no 3D list view in the movie library and series like in MQ7?
Only available in mod MQ7, have a few views no available on MQ8.
2019-03-12, 21:09
(2019-03-08, 17:05)Holzfred Wrote: Hello,Me too, this would be a great addition to what is an absolutely fabulous skin. With the option for the information to time out after 10 second or so to avoid screen burn in would be amazing.
very nice skin.
I have one question. Will the music player have the option to change the view of the fanart in the settings from now Mosaic Slideshow to Slideshow + Viewing or Fanart etc like in AEON MQ6 ?
Then I 100% Change to this Skin.
All the Best, Uwe
2019-03-12, 21:21
(2019-03-12, 21:09)jasoncrosier Wrote:In the library, use left arrow, look where you find the option with settings.(2019-03-08, 17:05)Holzfred Wrote: Hello,Me too, this would be a great addition to what is an absolutely fabulous skin. With the option for the information to time out after 10 second or so to avoid screen burn in would be amazing.
very nice skin.
I have one question. Will the music player have the option to change the view of the fanart in the settings from now Mosaic Slideshow to Slideshow + Viewing or Fanart etc like in AEON MQ6 ?
Then I 100% Change to this Skin.
All the Best, Uwe
2019-03-12, 22:00
(2019-03-07, 00:48)Wanilton Wrote:@Wanilton Unfortunately while configuring the keymap using long press has some adverse effects in other functions with the small remote a nVidia Shield Tv has. You kindly provided code to achieve this - is it possible to 'change' any of the context menu buttons to function using these instead (as there are some functions I would never use) ?(2019-03-06, 21:20)StoneT Wrote:(2019-03-06, 02:23)Wanilton Wrote: @StoneT, Using keymaps I will try to explain better, when have more time here.@Wanilton I would love to see which key you'd like me to map for subtitle download and offset's ??
This is how a nVidia Shield Tv remote looks:
I use Keyboard only to control my htpc, all codes go in keyboard.xml file in the fullscreen area while playing
u - for call subtitles window
Code:<u>ActivateWindow(SubtitleSearch)</u>
g - for call menus in disc
Code:<g>PlayerControl(ShowVideoMenu)</g>
b - for call audio osd
h - for call subtitle osd
n - for call video osd
Code:<b>RunScript(special://masterprofile/audioosd.py)</b>
<h>RunScript(special://masterprofile/subtitleosd.py)</h>
<n>RunScript(special://masterprofile/videoosd.py)</n>
Subtitles and audio offset
Code:<left mod="ctrl">subtitledelayminus</left>
<right mod="ctrl">subtitledelayplus</right>
<left mod="ctrl,shift">audiodelayminus</left>
<right mod="ctrl,shift">audiodelayplus</right>
python code
audioosd.py
Code:import xbmc
xbmc.executebuiltin('ActivateWindow(osdaudiosettings)')
videoosd.py
Code:import xbmc
xbmc.executebuiltin('ActivateWindow(osdvideosettings)')
subtitleosd.py
Code:import xbmc
xbmc.executebuiltin('ActivateWindow(osdsubtitlesettings)')
2019-03-12, 23:09
For some strange reason, I get no titles (fonts) above the Weather icons on the main screen, or in the Weather Main menu. I'm using Openweathermap if that makes a difference (and can change to something else if there is something better).
Is there a way to change the font color for the Weather icons, or is there something else I can do to fix this issue?
Is there a way to change the font color for the Weather icons, or is there something else I can do to fix this issue?