Kodi Community Forum
works on movie icone genre - 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: Transparency! (https://forum.kodi.tv/forumdisplay.php?fid=115)
+---- Thread: works on movie icone genre (/showthread.php?tid=70269)



works on movie icone genre - Lareinette - 2010-03-19

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....


- ronie - 2010-03-21

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.