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 - latts9923 - 2017-01-31

@movie78

On the Top Menu, under COLLECTION/CHANGE VIEW, scroll down to DIALOGUE TOP ART and you can select which art you want to display.


RE: Multi-Mod addition for the MQ 7 Krypton Mod - movie78 - 2017-01-31

(2017-01-31, 19:41)latts9923 Wrote: @movie78

On the Top Menu, under COLLECTION/CHANGE VIEW, scroll down to DIALOGUE TOP ART and you can select which art you want to display.

Thanks!

Quick request.

Is it possible to move the ratings and the info a little bit up and also have the option to turn off the Country/Genre/Studio
Also, make the clearlogo or Banner a little Big and the option to remove the tag.

Image


RE: Multi-Mod addition for the MQ 7 Krypton Mod - the_bo - 2017-01-31

Awesome latts cheers for the posterzoom view Big Grin One thing be nice if its possible is when you press down to show the actors, beside each actor to show a short biography of the actor where ive marked on pic below. It will prob need a call to script extendedinfo or skin helper to display this. Im not sure how difficult it may be.

Image

I forgot to mention theres 2 others views that i think would be a great addition to your mod. The Shelfcase & Low Shelfcase view. All credit goes to original author of the shelfcase view. I found name MikeBZH44 in code so thanks mike if your the author. These views were made for mq6 so i had to make a lot of changes to get the cases and other parts to show. The low shelfcase view is a mod i made of the shelfcase view. It makes the cases a bit smaller so more movies get shown on screen at once. Heres a preview. Download link above each pic. You may have to change id numbers and stuff if it collides with views on your mod. If possible a nice option would be to show the disc coming out from top of case or maybe bouncing down from screen whichever looks best Smile

Shelfcase Right click save as. Change extension to xml.
Image

Shelfcase Low Right click save as. Change extension to xml.
Image

Hope everyone enjoys Big Grin

Also heres a top 250 logo i made feel free to add it if it suits

Image

Just my little contribution to this awesome mod. Keep up great work Big Grin


RE: Multi-Mod addition for the MQ 7 Krypton Mod - latts9923 - 2017-02-01

(2017-01-31, 20:01)movie78 Wrote: Thanks!

Quick request.

Is it possible to move the ratings and the info a little bit up and also have the option to turn off the Country/Genre/Studio
Also, make the clearlogo or Banner a little Big and the option to remove the tag.

Image

You bet!

If you'd like to make some of those changes to PosterZoom.xml, look for

Code:
<control type="image">
    <left>1340</left>
    <top>360</top>
    <width>375</width>
    <height>175</height>
    <aspectratio>keep</aspectratio>
    <texture background="true">$INFO[ListItem.Art(clearart)]</texture>
    <fadetime>FanartCrossFadeTime</fadetime>
    <animation effect="slide" start="0,0" end="0,-20" time="400" condition="!Skin.HasSetting(nowidevideocasezoom)">Conditional</animation>    
    <visible>Control.HasFocus(99)</visible>
</control>
<control type="image">
    <left>1210</left>
    <top>490</top>
    <width>650</width>
    <height>50</height>
    <align>center</align>
    <aligny>center</aligny>
    <aspectratio>stretch</aspectratio>
    <texture flipy="true">gradient_focus.png</texture>
    <colordiffuse>$VAR[value_headercolor]</colordiffuse>
    <visible>Control.HasFocus(99)</visible>
</control>

for the clearart and gradient underneath, and

Code:
<control type="group">
    <animation effect="fade" start="20" delay="4000" time="4000" pulse="true">WindowOpen</animation>
    <!-- Estrelas video -->
    <control type="image">    
    <left>1280</left>
    <top>145</top>
    <width>300</width>
    <height>30</height>
    <texture fallback="$VAR[value_styleratingstars,,0.png]">$VAR[value_styleratingstars]$INFO[ListItem.Rating,,.png]</texture>
    <aspectratio align="left" aligny="center">keep</aspectratio>
    <colordiffuse>$VAR[value_colorratingstars]</colordiffuse>
    <visible>![Window.IsActive(500) | Window.IsActive(502)]</visible>
</control>
<!-- Nota video -->
<control type="label">    
    <left>1600</left>
    <top>142</top>
    <width>250</width>
    <height>38</height>
    <font>Font_plot</font>
    <label>$INFO[ListItem.RatingAndVotes]</label>
    <textcolor>FFFFFAF0</textcolor>
    <visible>![Window.IsActive(500) | Window.IsActive(502)]</visible>
</control>
</control>
<control type="image">
    <left>1280</left>
    <top>185</top>
    <width>570</width>
    <height>1</height>
    <texture>line.png</texture>
</control>
<!-- Info Panel -->
<control type="grouplist">
    <left>1280</left>
    <top>195</top>
    <orientation>vertical</orientation>
    <itemgap>0</itemgap>
    <visible>!StringCompare(ListItem.Label,..)</visible>
<control type="label">
    <include>PosterZoomLabel</include>
    <label>$VAR[value_ground11_label]: [COLOR=FFFFFAF0]$VAR[value_ground11_value][/COLOR]</label>
</control>
<control type="label">
    <include>PosterZoomLabel</include>
    <label>$VAR[value_ground12_label]: [COLOR=FFFFFAF0]$VAR[value_ground12_value][/COLOR]</label>
</control>
<control type="label">
    <include>PosterZoomLabel</include>
    <label>$VAR[value_ground13_label]: [COLOR=FFFFFAF0]$VAR[value_ground13_value][/COLOR]</label>
    <visible>!Container.Content(songs)</visible>
</control>
</control>

for the stars and movie info underneath.


RE: Multi-Mod addition for the MQ 7 Krypton Mod - latts9923 - 2017-02-01

(2017-01-31, 22:39)the_bo Wrote: Awesome latts cheers for the posterzoom view Big Grin One thing be nice if its possible is when you press down to show the actors, beside each actor to show a short biography of the actor where ive marked on pic below. It will prob need a call to script extendedinfo or skin helper to display this. Im not sure how difficult it may be.

Thanks the_bo! I don't see any options in SkinHelper to pull an actor's bio...looks like the thumb, role and cast is all you can request.

I'll take a look at those other views you posted and the IMDB image. Thanks!


RE: Multi-Mod addition for the MQ 7 Krypton Mod - ajerazzor - 2017-02-01

(2017-01-31, 16:02)latts9923 Wrote: @ajerazzor

Make sure you've copied all the files from the Multi-Mod. VideoLyrics needs the updated files...

includes.xml
IncludesLyrics.xml
IncludesVideoLyrics.xml (new file)
script-cu-lrclyrics-main.xml

yes I have all of them in .kodi/addons/skin.aeonmq7.krypton.mod/1080i folder is that rught?


RE: Multi-Mod addition for the MQ 7 Krypton Mod - latts9923 - 2017-02-01

@ajerazzor

Correct...1080i.

Hmm...I'm not sure what else it could be. If you have all the files, you should be able to select Layout 5 in Settings.


RE: Multi-Mod addition for the MQ 7 Krypton Mod - grafixfrh - 2017-02-01

Installed this once again on the RC4 Krypton with Krypton mod and the backgrounds are not showing up for the themes only the one for the MQ7 and the mod itself themes seems to be appearing all of yours are black screen. I have tried different locations in several folders placing the resource folder, but Kodi seems not to find them when the theme is enabled. The animations seem to be all be working as intended it is just the backgrounds that are not appearing. Also I am having an issue applying my Avatar theme based on your starwars I am not able to get my theme to even load or appear on the menu with the new toggle I believe it may be an ID issue as really all I did was copy and paste code and change name and folder with files such as the png's for animated ships which I replaced with avatar png's. I did manage to get my animation to load if renamed and placed in your starwars folder so I know the png's work I will attempt to try and find a solution. If you may have an idea what the issue is would appreciate any insight when you have any time. Other than that this is amazing work the themes are great and fill some much needed gaps in the interface customization.


RE: Multi-Mod addition for the MQ 7 Krypton Mod - Dave.B - 2017-02-01

(2017-01-30, 16:58)Dave.B Wrote: Hi There,
Can someone tell me why the information in the Shelf 3D layout is missing (see in red).

Image

The information is there (See in yelow) it is just don't show on the Shelf 3D

Image

@latts9923 Can you fix this please ?
Thanx a lot


RE: Multi-Mod addition for the MQ 7 Krypton Mod - grafixfrh - 2017-02-02

Looks as if the problem I have is indeed ID's as I am unable to create another radio button for a menu add for my animations on the settings screen. I am just baffled as to why I am unable to create a new menu radio button in the settings unless it is an ID issue I may be missing a line of code to add it in the slew of xml files is there a specific one related to adding those to the menu? As I said all I am doing is copying and pasting code between controls and have searched and written in place every line I searched and changed each instance and still no dice. As a matter of fact now with them in there when I go into skin setting menu it is black until I hit escape and get out of it something is amiss.


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

@Dave.B

I have everything working now on the Shelf3D Music view except the Duration and the Tracklist on the upper left of the Albums view. Still looking into it.


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

@grafixfrh

I'll send you a PM on how to get this all to work as soon as I can.


RE: Multi-Mod addition for the MQ 7 Krypton Mod - grafixfrh - 2017-02-02

Np and thank you I am still just tinkering I have not done much in the Kodi arena and figured I would get my feet wet since I made so many wifi remotes for it I might as well learn more about modding it so can make some really cool features on remotes kind of take control of it to the next level so to speak haha.


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

(2017-02-02, 05:07)latts9923 Wrote: @Dave.B

I have everything working now on the Shelf3D Music view except the Duration and the Tracklist on the upper left of the Albums view. Still looking into it.

Thanx, Looking forward for your fix.


RE: Multi-Mod addition for the MQ 7 Krypton Mod - movie78 - 2017-02-02

(2017-02-01, 04:15)latts9923 Wrote:
(2017-01-31, 20:01)movie78 Wrote: Thanks!

Quick request.

Is it possible to move the ratings and the info a little bit up and also have the option to turn off the Country/Genre/Studio
Also, make the clearlogo or Banner a little Big and the option to remove the tag.

Image

You bet!

If you'd like to make some of those changes to PosterZoom.xml, look for

Code:
<control type="image">
    <left>1340</left>
    <top>360</top>
    <width>375</width>
    <height>175</height>
    <aspectratio>keep</aspectratio>
    <texture background="true">$INFO[ListItem.Art(clearart)]</texture>
    <fadetime>FanartCrossFadeTime</fadetime>
    <animation effect="slide" start="0,0" end="0,-20" time="400" condition="!Skin.HasSetting(nowidevideocasezoom)">Conditional</animation>    
    <visible>Control.HasFocus(99)</visible>
</control>
<control type="image">
    <left>1210</left>
    <top>490</top>
    <width>650</width>
    <height>50</height>
    <align>center</align>
    <aligny>center</aligny>
    <aspectratio>stretch</aspectratio>
    <texture flipy="true">gradient_focus.png</texture>
    <colordiffuse>$VAR[value_headercolor]</colordiffuse>
    <visible>Control.HasFocus(99)</visible>
</control>

for the clearart and gradient underneath, and

Code:
<control type="group">
    <animation effect="fade" start="20" delay="4000" time="4000" pulse="true">WindowOpen</animation>
    <!-- Estrelas video -->
    <control type="image">    
    <left>1280</left>
    <top>145</top>
    <width>300</width>
    <height>30</height>
    <texture fallback="$VAR[value_styleratingstars,,0.png]">$VAR[value_styleratingstars]$INFO[ListItem.Rating,,.png]</texture>
    <aspectratio align="left" aligny="center">keep</aspectratio>
    <colordiffuse>$VAR[value_colorratingstars]</colordiffuse>
    <visible>![Window.IsActive(500) | Window.IsActive(502)]</visible>
</control>
<!-- Nota video -->
<control type="label">    
    <left>1600</left>
    <top>142</top>
    <width>250</width>
    <height>38</height>
    <font>Font_plot</font>
    <label>$INFO[ListItem.RatingAndVotes]</label>
    <textcolor>FFFFFAF0</textcolor>
    <visible>![Window.IsActive(500) | Window.IsActive(502)]</visible>
</control>
</control>
<control type="image">
    <left>1280</left>
    <top>185</top>
    <width>570</width>
    <height>1</height>
    <texture>line.png</texture>
</control>
<!-- Info Panel -->
<control type="grouplist">
    <left>1280</left>
    <top>195</top>
    <orientation>vertical</orientation>
    <itemgap>0</itemgap>
    <visible>!StringCompare(ListItem.Label,..)</visible>
<control type="label">
    <include>PosterZoomLabel</include>
    <label>$VAR[value_ground11_label]: [COLOR=FFFFFAF0]$VAR[value_ground11_value][/COLOR]</label>
</control>
<control type="label">
    <include>PosterZoomLabel</include>
    <label>$VAR[value_ground12_label]: [COLOR=FFFFFAF0]$VAR[value_ground12_value][/COLOR]</label>
</control>
<control type="label">
    <include>PosterZoomLabel</include>
    <label>$VAR[value_ground13_label]: [COLOR=FFFFFAF0]$VAR[value_ground13_value][/COLOR]</label>
    <visible>!Container.Content(songs)</visible>
</control>
</control>

for the stars and movie info underneath.

I try editing but i mess thing up anyway thanks for your help.