works on movie icone genre
#1
Hi

I'm trying to make 2 things :

First I've changed my movie foldericones like this :

Image

and i would like to delete genre titles. How is it possible Ronnie? Thanks.



Another question : How can i delete the default image used as movie genre foldericones?

Image



The last question is surely more difficult.
If I used the icone view (for example), here is the screenshot :

Image

how can I modify this view for replacing the default blue icones with my own icones like this :

Image


Off course I have to delete the genre titles....
Reply
#2
Lareinette Wrote:i would like to delete genre titles. How is it possible Ronnie?

im pretty sure that's this part in View-List.xml:

Code:
<control type="label">
    <posx>99</posx>
    <posy>79</posy>
    <width>170</width>
    <height>25</height>
    <font>font-19</font>
    <textcolor>white</textcolor>
    <align>center</align>
    <aligny>center</aligny>
    <label>$INFO[ListItem.Label]</label>
    <visible>!stringcompare(ListItem.Label,..) + !Skin.HasSetting(Enable_Foldericons_Movies_Genre) + substring(Container.FolderPath,videodb://1/1/)</visible>
</control>


Lareinette Wrote:Another question : How can i delete the default image used as movie genre foldericones?

that's this piece of code in the same file:

Code:
<control type="image">
    <posx>87</posx>
    <posy>120</posy>
    <width>231</width>
    <height>286</height>
    <texture>genre-movies-icon.jpg</texture>
    <visible>!stringcompare(ListItem.Label,..) + !Skin.HasSetting(Enable_Foldericons_Movies_Genre) + substring(Container.FolderPath,videodb://1/1/)</visible>
</control>



Lareinette Wrote:The last question is surely more difficult.

how can I modify this view for replacing the default blue icones with my own icones like this

you're on your own i'm afraid, i've never tried it myself so i'm not sure what needs to be changed.
Do not PM or e-mail Team-Kodi members directly asking for support.
Always read the Forum rules, Kodi online-manual, FAQ, Help and Search the forum before posting.
Reply

Logout Mark Read Team Forum Stats Members Help
works on movie icone genre0