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)



RE: Multi-Mod addition for the MQ 7 Krypton Mod - Ruk12345 - 2018-02-03

Delete


RE: Multi-Mod addition for the MQ 7 Krypton Mod - Ruk12345 - 2018-02-03

my original string was  <setting id="mymenubar" type="string">starwarsmenubarvertical</setting>

i tried <setting id="mymenubar" type="string">starwarsmenubar</setting> also tried the strings you posted all with no luck..

any ideas?

Ok I figured it out sorry. I did not notice the second post about mymenubarvertical


RE: Multi-Mod addition for the MQ 7 Krypton Mod - latts9923 - 2018-02-04

@Ruk12345 

No worries...glad you got it working!

Unfortunately it became partly a manual affair since I introduced a new string into settings.xml.  Once I get the Leia version ready it should work right out of the box.


RE: Multi-Mod addition for the MQ 7 Krypton Mod - latts9923 - 2018-02-04

@Angelinas

I can get the first studio to appear in color if I use the code...
Code:
<onload>Skin.SetString(SkinHelper.StudioLogos.Path,resource://resource.images.studios.coloured/)</onload>
in Home.xml, and the code...
Code:
<variable name="value_studio">
<value condition="!String.StartsWith(ListItem.Path,videodb://movies/sets)">$INFO[Window(Home).Property(SkinHelper.ListItem.StudioLogo)]</value>
</variable>
in IncludesVariables.xml

I would like to be able to revert back to the white studio logos when the Skin default media flags are chosen. Is there an onload condition I could add that would accomplish this?

Thanks for any suggestions!


RE: Multi-Mod addition for the MQ 7 Krypton Mod - Ruk12345 - 2018-02-04

Sweet, I am SUPER glad to hear you are planning a Leia version!! Loving kodiflix for TV!

Thanks again bro, when I get some extra monies I’ll be donating to you again...


EVERYONE if you can afford it and love this mod PLEASE buy mr Latts a beer or 12!

He has PayPal link on his YouTube I believe!


RE: Multi-Mod addition for the MQ 7 Krypton Mod - latts9923 - 2018-02-04

@Ruk12345 

Yeah, the Leia version might take a little while...lots of code to scrub through.

You're welcome!  And thanks for the kind words and endorsement!  Haha.


RE: Multi-Mod addition for the MQ 7 Krypton Mod - Angelinas - 2018-02-04

(2018-02-04, 01:55)latts9923 Wrote: @Angelinas

I can get the first studio to appear in color if I use the code...
Code:
<onload>Skin.SetString(SkinHelper.StudioLogos.Path,resource://resource.images.studios.coloured/)</onload>
in Home.xml, and the code...
Code:
<variable name="value_studio">
<value condition="!String.StartsWith(ListItem.Path,videodb://movies/sets)">$INFO[Window(Home).Property(SkinHelper.ListItem.StudioLogo)]</value>
</variable>
in IncludesVariables.xml

I would like to be able to revert back to the white studio logos when the Skin default media flags are chosen. Is there an onload condition I could add that would accomplish this?

Thanks for any suggestions! 
You must use container(510)...and code are wrong

This is just for widget in home try with some video node Smile

in IncludesVariables.xml:
Code:
   <variable name="value_widgetsstudio">
        <value condition="!String.IsEmpty(Container(510).ListItem.Studio)">$INFO[Container(510).ListItem.Studio,resource://resource.images.studios.coloured/,.png]</value>
        <value condition="String.IsEmpty(Container(510).ListItem.Studio)">$INFO[Window(0).Property(SkinHelper.ListItem.Studio),resource://resource.images.studios.coloured/,.png]</value>
    </variable>

Studio icon for views are in mess...need to change on to many places


This not exist...double name for "    <include name="FlagsContent2">"
Code:
<texture>$VAR[value_studiovalue_studio]</texture>



RE: Multi-Mod addition for the MQ 7 Krypton Mod - Poland - 2018-02-04

Hello. I do not have spinning film discs that come out of the box. Do you know why?


RE: Multi-Mod addition for the MQ 7 Krypton Mod - Dave.B - 2018-02-05

Hi "latts9923",
Update #48 is awesome, specially the kodiflix for tv shows and the pulsing font glow additions. Than you again for this amazing mod.

I've just noticed few minor things:

1. Color diffuse for the rating stars in music info still doesn't work (see screenshot below):

Image

2. Record label for layout 7 is still not showing (layout 3, 4 & 6 work perfect).


Have a good one Bro.

Dave.


RE: Multi-Mod addition for the MQ 7 Krypton Mod - latts9923 - 2018-02-05

@Angelinas 

I added a radio button to switch between white and colored studio icons...

Code:
<onload condition="!Skin.HasSetting(coloredstudio)">Skin.SetString(SkinHelper.StudioLogos.Path,resource://resource.images.studios.white/)</onload>
<onload condition="Skin.HasSetting(coloredstudio)">Skin.SetString(SkinHelper.StudioLogos.Path,resource://resource.images.studios.coloured/)</onload>

It's not ideal, but it works for now until I can figure out a better way.  Thanks for your help!


RE: Multi-Mod addition for the MQ 7 Krypton Mod - latts9923 - 2018-02-05

@Poland

Did you run Artwork Downloader on your movie library yet?


RE: Multi-Mod addition for the MQ 7 Krypton Mod - latts9923 - 2018-02-05

@Dave.B

Hey bud!  Thank you sir...and you're welcome!

I fixed the rating star color diffuse bug.  I'll take a look at the record label for layout 7.


RE: Multi-Mod addition for the MQ 7 Krypton Mod - Poland - 2018-02-05

(2018-02-05, 14:37)latts9923 Wrote: @Poland

Did you run Artwork Downloader on your movie library yet?
 Artwork Downloader yes active.I downloaded the latest version of Kodi.It was good before, the plates disappeared.Artwork Downloader it does not download graphics.


RE: Multi-Mod addition for the MQ 7 Krypton Mod - Angelinas - 2018-02-05

(2018-02-05, 19:22)Poland Wrote:
(2018-02-05, 14:37)latts9923 Wrote: @Poland

Did you run Artwork Downloader on your movie library yet?
 Artwork Downloader yes active.I downloaded the latest version of Kodi.It was good before, the plates disappeared.Artwork Downloader it does not download graphics.  
Artwork downloader latest is down...need old version.
https://forum.kodi.tv/showthread.php?tid=327035

Get your Art with this addon....
https://forum.kodi.tv/showthread.php?tid=258886


RE: Multi-Mod addition for the MQ 7 Krypton Mod - Aaiemron - 2018-02-08

Thanks for this amazing mod. I installed everything and all is working except I don't have a menubar anymore. I don't know why. How do I get it back please?