Kodi Community Forum
Mod Multi-Mod addition for the MQ 7 Krypton Mod - 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: Aeon MQ (https://forum.kodi.tv/forumdisplay.php?fid=68)
+---- Thread: Mod Multi-Mod addition for the MQ 7 Krypton Mod (/showthread.php?tid=301497)



Multi-Mod addition for the MQ 7 Krypton Mod - MB1968 - 2018-03-18

@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?


RE: Multi-Mod addition for the MQ 7 Krypton Mod - latts9923 - 2018-03-18

@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.


RE: Multi-Mod addition for the MQ 7 Krypton Mod - latts9923 - 2018-03-18

@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.


RE: Multi-Mod addition for the MQ 7 Krypton Mod - Angelinas - 2018-03-18

(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




Multi-Mod addition for the MQ 7 Krypton Mod - MB1968 - 2018-03-18

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.


RE: Multi-Mod addition for the MQ 7 Krypton Mod - latts9923 - 2018-03-18

@Angelinas

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


RE: Multi-Mod addition for the MQ 7 Krypton Mod - latts9923 - 2018-03-18

@MB1968

Those "Move" views are tied to Shelf3D and Shelf3Dv2.


RE: Multi-Mod addition for the MQ 7 Krypton Mod - Angelinas - 2018-03-18

(2018-03-18, 14:52)latts9923 Wrote: listcolor

already in skin..Marcos was put include name in ViewsWide.xml


RE: Multi-Mod addition for the MQ 7 Krypton Mod - latts9923 - 2018-03-18

@Angelinas

Ahh...OK, I see it. Thanks sir!


Multi-Mod addition for the MQ 7 Krypton Mod - MB1968 - 2018-03-19

@Latts. Sorry for the false report.


RE: Multi-Mod addition for the MQ 7 Krypton Mod - latts9923 - 2018-03-19

@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?


RE: Multi-Mod addition for the MQ 7 Krypton Mod - Angelinas - 2018-03-19

"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


RE: Multi-Mod addition for the MQ 7 Krypton Mod - latts9923 - 2018-03-19

@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.


Multi-Mod addition for the MQ 7 Krypton Mod - MB1968 - 2018-03-19

@Latss. This is the result. I think the orange color closing tag needs to be moved.

Image


RE: Multi-Mod addition for the MQ 7 Krypton Mod - latts9923 - 2018-03-19

@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.