• 1
  • 117
  • 118
  • 119(current)
  • 120
  • 121
  • 181
Mod Multi-Mod addition for the MQ 7 Krypton Mod
@Latts, that doesn't surprise me. I have that blank line for the song that is playing, from the very beginning that I'm using this mod. I can live with it. Were you able to reproduce the missing banner when there's no clearlogo?
Windows 11 Pro
Kodi 21 - Aeon MQ7/MQ9 Omega Mod
Kodi 20.5 - Aeon MQ9 Nexus Mod

Android - Beelink GT King
Kodi 21 - Aeon MQ7 Omega Mod
Kodi Maven Fork 21 - Aeon MQ9 Omega Mod

CoreELEC - Beelink GT King
Kodi 21 - Aeon MQ7 Omega Mod


Reply
@Angelinas

That's odd...I am still unable to reproduce the problem when moving back to the right list after starting a song. Can you show how you have your "listcolor" and "listcolorfocus" includes setup? Thanks in advance.
Reply
@MB1968

I'm still trying to reproduce the problem...we'll get it fixed. Yes, I have a fix for the banner not displaying when there is no clearlogo. I have a big update coming...I'd like to include a fix for this RightList problem if possible.
Reply
(2018-03-18, 12:05)latts9923 Wrote: That's odd...I am still unable to reproduce the problem when moving back to the right list after starting a song. Can you show how you have your "listcolor" and "listcolorfocus" includes setup? Thanks in advance.



Fixed using code from post before Smile

XBoxMediaCenter (Kodi Matrix ) 19.3 , AndroidBox -Matrix Skin AeonMQ6
Reply
Take your time Latts. No need to hurry. I only was curious if you were able to reproduce the minor banner bug. I think I found another small bug yesterday when scrolling through different views in the music library. A couple of views aren't selected at once but show "Move" at the top of the screen, instead of the title for the view. If I remember it correctly this only counts for the 3D views. Not sure if this has been reported earlier. If needed, I can post a screenshot.
Windows 11 Pro
Kodi 21 - Aeon MQ7/MQ9 Omega Mod
Kodi 20.5 - Aeon MQ9 Nexus Mod

Android - Beelink GT King
Kodi 21 - Aeon MQ7 Omega Mod
Kodi Maven Fork 21 - Aeon MQ9 Omega Mod

CoreELEC - Beelink GT King
Kodi 21 - Aeon MQ7 Omega Mod


Reply
@Angelinas

Cool...would you mind sharing your code for "listcolor" and "listcolorfocus"?
Reply
@MB1968

Those "Move" views are tied to Shelf3D and Shelf3Dv2.
Reply
(2018-03-18, 14:52)latts9923 Wrote: listcolor

already in skin..Marcos was put include name in ViewsWide.xml
XBoxMediaCenter (Kodi Matrix ) 19.3 , AndroidBox -Matrix Skin AeonMQ6
Reply
@Angelinas

Ahh...OK, I see it. Thanks sir!
Reply
@Latts. Sorry for the false report.
Windows 11 Pro
Kodi 21 - Aeon MQ7/MQ9 Omega Mod
Kodi 20.5 - Aeon MQ9 Nexus Mod

Android - Beelink GT King
Kodi 21 - Aeon MQ7 Omega Mod
Kodi Maven Fork 21 - Aeon MQ9 Omega Mod

CoreELEC - Beelink GT King
Kodi 21 - Aeon MQ7 Omega Mod


Reply
@MB1968

No worries. Hey, do me a favor if you would. I have changed the code for the tracklist on RightList, and it still does not change the selected track color. Open IncludesMusic.xml and find the following...
Code:
<control type="panel" id="777">
<top>120</top>
<width>590</width>
<height>460</height>
<onleft>9900</onleft>
<onright>51</onright>
<orientation>vertical</orientation>
<content sortby="track" sortorder="ascending">$INFO[ListItem.FolderPath]</content>
<visible>Container.Content(albums)+Control.IsVisible(51)+!String.Contains(ListItem.Label,..)</visible>
<itemlayout height="35" width="590">
<control type="label">
<left>10</left>
<height>34</height>
<width>590</width>
<aligny>center</aligny>
<label>[COLOR=orange]$INFO[ListItem.Duration,, - ][/COLOR]$INFO[ListItem.Label]</label>
<font>Font_button</font>
<scroll>false</scroll>
</control>
</itemlayout>
<focusedlayout height="35" width="590">
<control type="image">
<left>0</left>
<top>0</top>
<width>590</width>
<height>35</height>
<texture diffuse="shadow_mask_v.png">grey.png</texture>
<animation effect="rotate" center="auto" start="0" end="180" time="0" condition="true">Conditional</animation>
</control>
<control type="label">
<left>10</left>
<height>34</height>
<width>590</width>
<aligny>center</aligny>
<label>[COLOR=black]$INFO[ListItem.Duration,, - ]$INFO[ListItem.Label][/COLOR]</label>
<colordiffuse>orange</colordiffuse>
<font>Font_button</font>
</control>
<control type="label">
<left>10</left>
<height>34</height>
<width>540</width>
<aligny>center</aligny>
<label>[COLOR=black]$INFO[ListItem.Duration,, - ]$INFO[ListItem.Label][/COLOR]</label>
<colordiffuse>orange</colordiffuse>
<font>Font_button</font>
<visible>Control.HasFocus(777)</visible>
</control>
</focusedlayout>
</control>

Replace with...
Code:
<control type="panel" id="777">
<top>120</top>
<width>590</width>
<height>460</height>
<onleft>9900</onleft>
<onright>51</onright>
<orientation>vertical</orientation>
<content sortby="track" sortorder="ascending">$INFO[ListItem.FolderPath]</content>
<visible>Container.Content(albums) + Control.IsVisible(51) + !String.Contains(ListItem.Label,..)</visible>
<itemlayout height="35" width="590">
<control type="label">
<left>10</left>
<height>34</height>
<width>590</width>
<aligny>center</aligny>
<include>listcolor</include>
<label>[COLOR=orange]$INFO[ListItem.Duration,, - ][/COLOR]$INFO[ListItem.Label]</label>
<font>Font_button</font>
<scroll>false</scroll>
</control>
</itemlayout>
<focusedlayout height="35" width="590">
<control type="image">
<left>0</left>
<top>0</top>
<width>590</width>
<height>35</height>
<texture diffuse="shadow_mask_v.png">grey.png</texture>
<animation effect="rotate" center="auto" start="0" end="180" time="0" condition="true">Conditional</animation>
</control>
<control type="label">
<left>10</left>
<height>34</height>
<width>590</width>
<aligny>center</aligny>
<label>[COLOR=black]$INFO[ListItem.Duration,, - ]$INFO[ListItem.Label][/COLOR]</label>
<include>listcolorfocus</include>
<font>Font_button</font>
</control>
<control type="label">
<left>10</left>
<height>34</height>
<width>540</width>
<aligny>center</aligny>
<textcolor>$INFO[Skin.String(colorheader)]</textcolor>
<label>[COLOR=black]$INFO[ListItem.Duration,, - ]$INFO[ListItem.Label][/COLOR]</label>
<include>listcolorfocus</include>
<font>Font_button</font>
<visible>Control.HasFocus(777)</visible>
</control>
</focusedlayout>
</control>

Start KODI and select a track from the list in RightList. Move right to the album list...does the selected track change color for you?
Reply
"color=" need to have Big letter "COLOR="

With your code label don't have color in left list, why you  don't use mine code.. Wink
XBoxMediaCenter (Kodi Matrix ) 19.3 , AndroidBox -Matrix Skin AeonMQ6
Reply
@Angelinas

Yeah, I have COLOR uppercase in the code...the copy and paste dropped it to lowercase. I've used my code and yours with the same result. There must be something I'm overlooking...working a lot of hours right now. Haha.
Reply
@Latss. This is the result. I think the orange color closing tag needs to be moved.

Image
Windows 11 Pro
Kodi 21 - Aeon MQ7/MQ9 Omega Mod
Kodi 20.5 - Aeon MQ9 Nexus Mod

Android - Beelink GT King
Kodi 21 - Aeon MQ7 Omega Mod
Kodi Maven Fork 21 - Aeon MQ9 Omega Mod

CoreELEC - Beelink GT King
Kodi 21 - Aeon MQ7 Omega Mod


Reply
@MB1968

Make sure your "color" is uppercase. The copy and paste dropped it to lowercase.  And I see your selected track is using the colorheader color.
Reply
  • 1
  • 117
  • 118
  • 119(current)
  • 120
  • 121
  • 181

Logout Mark Read Team Forum Stats Members Help
Multi-Mod addition for the MQ 7 Krypton Mod4