How to remove the "up" icon from a container
#1
Question 
I try to remove the first item listed in a container which is used to go to the next up level in a library. I want to replace it with a another button in the same window.

Any idea ?
Reply
#2
replacing no idea removing go into settings\appearance and unselect "Show Parent Folder Items"
Reply
#3
I try to hide the link to parent folder only on the level I choose. So when I choose to browse down in the tree I want to be possible to go up to return at the start point. If my start point is ActivateWindow(MusicLibrary,Artists), I doesn't want the link to be show to go to the root of the library.

I try to use a multiple visible condition with IsEmpty() apply to ListItem.Label or stringcompare(ListItem.FolderName,"musicdb://3/") but that doesn't seem to work.

Any suggestion ?
Reply
#4
i don't think it's possible, but try !IsEmpty(ListItem.Thumb)

i'm using this to display a dvd case around all thumbs in a list or panel, but exclude the 'up' icon. works reasonably well for me.
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
#5
Where is the error ? I don't understand.

Code:
    <include name="list">
        <control type="list" id="50">
            <posx>170</posx>
            <posy>40</posy>
            <width>500</width>
            <height>480</height>
            <onleft>9000</onleft>
            <onright>9000</onright>
            <onup>50</onup>
            <ondown>50</ondown>
            <viewtype label="list">list</viewtype>
            <scrolltime>200</scrolltime>
            <itemlayout height="32">
                <control type="image">
                    <width>500</width>
                    <height>30</height>
                    <texture>ButtonNF.png</texture>
                    <visible>!IsEmpty(ListItem.Thumb)</visible>
                    <!-- Container.Content(Albums)+ -->
                </control>
                <control type="image">
                    <posy>2</posy>
                    <width>26</width>
                    <height>26</height>
                    <info>ListItem.Icon</info>
                    <visible>!IsEmpty(ListItem.Thumb)</visible>
                </control>
                <control type="label">
                    <posx>30</posx>
                    <width>465</width>
                    <height>30</height>
                    <info>ListItem.Label</info>
                    <textcolor>White</textcolor>
                    <scroll>false</scroll>
                    <visible>!IsEmpty(ListItem.Thumb)</visible>
                </control>
            </itemlayout>
            <focusedlayout height="32">
                <control type="image">
                    <width>500</width>
                    <height>30</height>
                    <texture>ButtonFo.png</texture>
                </control>
                <control type="image">
                    <posy>2</posy>
                    <width>26</width>
                    <height>26</height>
                    <info>ListItem.Icon</info>
                </control>
                <control type="label">
                    <posx>30</posx>
                    <width>465</width>
                    <height>30</height>
                    <textcolor>White</textcolor>
                    <info>ListItem.Label</info>
                </control>
            </focusedlayout>
        </control>
    </include>
Reply
#6
Skinners cannot remove content from a list.

Note that if you activate window with the return parameter, pressing the up arrow will return to home.
Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.


Image
Reply
#7
(2009-09-03, 00:08)jmarshall Wrote: Skinners cannot remove content from a list.

Note that if you activate window with the return parameter, pressing the up arrow will return to home.

I want to remove "Goback" and "Getmore" item from list. As you told it is not possible for skinner its ok but i can edit any python file(.py) and C++ file so can you give me hint where will i have to edit. I do not want both item.
Reply

Logout Mark Read Team Forum Stats Members Help
How to remove the "up" icon from a container0