v18 [MOD] Aeon MQ5 for Kodi 18 Leia
#19
(2018-07-08, 02:46)ETAP Wrote: I know this might not be the olace to post this but ive looked ecerywhere on here to find a place suitable and thos is the closet i can find. So my apologies in advance. But,I know MQ 6 is outdated but i really do like this skin. But, my only problem is this; i have png's with a transparent background so when i put them in kodi under the favorites tab and view in poster view(because its the only one that displays the png large enough for me) theres a white background when png is highlighted. Which in turn defeats the trasparent background. How can i remove that?
 On skin MQ6, open skin addon file ViewsPoster.xml in text editor.  Scroll down to here (line  85):
Code:
    <focusedlayout width="298" height="360">
            <control type="image">
                <left>0</left>
                <top>6</top>
                <width>260</width>
                <height>350</height>
                <aspectratio align="center" aligny="bottom">keep</aspectratio>
                <texture fallback="DefaultVideoPoster.png" background="true">$VAR[value_poster]</texture>
                <bordertexture border="-2">grey.png</bordertexture>
                <animation reversible="false" effect="zoom" end="120" center="auto" time="200">Focus</animation>
                <visible>![Window.IsActive(500) | Window.IsActive(501) | Window.IsActive(502)]</visible>
            </control>

then comment out the "bordertexture" element so it's like this:
Code:
    <focusedlayout width="298" height="360">
            <control type="image">
                <left>0</left>
                <top>6</top>
                <width>260</width>
                <height>350</height>
                <aspectratio align="center" aligny="bottom">keep</aspectratio>
                <texture fallback="DefaultVideoPoster.png" background="true">$VAR[value_poster]</texture>
                <!-- <bordertexture border="-2">grey.png</bordertexture> -->
                <animation reversible="false" effect="zoom" end="120" center="auto" time="200">Focus</animation>
                <visible>![Window.IsActive(500) | Window.IsActive(501) | Window.IsActive(502)]</visible>
            </control>

That should do it for videos.  If you also want it for music, do the same thing for the next image control in that file.

scott s.
.
Reply


Messages In This Thread
[MOD] Aeon MQ5 for Kodi 18 Leia - by scott967 - 2017-01-19, 00:51
RE: [MOD] Aeon MQ5 for Kodi 18 Leia - by ETAP - 2018-07-08, 02:46
RE: [MOD] Aeon MQ5 for Kodi 18 Leia - by scott967 - 2018-08-01, 04:27
Logout Mark Read Team Forum Stats Members Help
[MOD] Aeon MQ5 for Kodi 18 Leia4