Library View-type background translucent image
#1
Good day,

Just starting to figure out how Kodi handle its view types and after reading Skinning manual and searching the forum I do not seem to be able to find an answer to my maybe novice question Smile.

I thought to start easy trying to tweak the "Media Info" video library view. However, after experimenting with the ViewsVideoLibrary.xml I am unable how to change the size of the translucent background - surrounded with a white rectangle in the attached image- which I now believe is declared somewhere else other than ViewsVideoLibrary.xml.

How can I change that list translucent background`s dimensions, just a pointer to where it is declared would suffice and sorry for such a novice question.

Image
Reply
#2
In the main window XML (MyVideoNav.xml) you'll find <include>ContentPanelBackgrounds</include> which is found in the Includes.xml. In that code you'll see different groups with visible conditions based on each view type's ID. In your case it's 504.

PHP Code:
            <control type="group">
                <include>
VisibleFadeEffect</include>
                <
visible>Control.IsVisible(504) | Control.IsVisible(550) | Control.IsVisible(512)</visible>
                <
control type="image">
                    <
left>50</left>
                    <
top>60</top>
                    <
width>640</width>
                    <
height>600</height>
                    <
texture border="15">ContentPanel.png</texture>
                </
control>
                <
control type="image">
                    <
left>50</left>
                    <
top>652</top>
                    <
width>640</width>
                    <
height>64</height>
                    <
texture border="15">ContentPanelMirror.png</texture>
                </
control>
                <
control type="image">
                    <
left>700</left>
                    <
top>60</top>
                    <
width>530</width>
                    <
height>600</height>
                    <
texture border="15">ContentPanel.png</texture>
                </
control>
                <
control type="image">
                    <
left>700</left>
                    <
top>652</top>
                    <
width>530</width>
                    <
height>64</height>
                    <
texture border="15">ContentPanelMirror.png</texture>
                </
control>
            </
control
Reply
#3
Thank you, Hitcher
Reply

Logout Mark Read Team Forum Stats Members Help
Library View-type background translucent image0