How do I remove file/movie count?

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
igotdvds Offline
Skilled Skinner
Posts: 1,616
Joined: Jul 2009
Reputation: 11
Post: #1
I want to remove the "(283) Items Page 1/13" from the bottom of a view, any ideas how to do that?
find quote
Jezz_X Offline
Team-XBMC Skinner
Posts: 5,264
Joined: Jun 2006
Reputation: 55
Location: Earth
Post: #2
easiest way would be to remove all the text in the include in includes.xml between
PHP Code:
    <include name="CommonPageCount">
        <
control type="label">
            <
posx>40</posx>
            <
posy>30r</posy>
            <
width>700</width>
            <
height>20</height>
            <
label>([color=blue]$INFO[Player.Time] / $INFO[Player.Duration,][/color]) - $INFO[MusicPlayer.Title]$INFO[VideoPlayer.Title]</label>
            <
align>left</align>
            <
aligny>center</aligny>
            <
font>font12</font>
            <
textcolor>grey2</textcolor>
            <
shadowcolor>black</shadowcolor>
            <
visible>Player.HasMedia</visible>
            <include>
VisibleFadeEffect</include>
            <include>
Window_OpenClose_Animation</include>        
        </
control>
        <
control type="label">
            <
description>Page Count Label</description>
            <
posx>40r</posx>
            <
posy>30r</posy>
            <
width>500</width>
            <
height>20</height>
            <
font>font12</font>
            <
textcolor>grey2</textcolor>
            <
scroll>false</scroll>
            <
align>right</align>
            <
aligny>center</aligny>
            <
label>([color=blue]$INFO[Container.NumItems][/color]) $LOCALIZE[31025]$INFO[Container.TotalTime, - $LOCALIZE[180] ([color=blue],[/color])] - $LOCALIZE[31024] ([color=blue]$INFO[Container.CurrentPage]/$INFO[Container.NumPages][/color])</label>
            <include>
Window_OpenClose_Animation</include>        
        </
control>
    </include> 

so make it
PHP Code:
    <include name="CommonPageCount">
        <
control type="label">
            <
posx>40</posx>
            <
posy>30r</posy>
            <
width>700</width>
            <
height>20</height>
            <
label>([color=blue]$INFO[Player.Time] / $INFO[Player.Duration,][/color]) - $INFO[MusicPlayer.Title]$INFO[VideoPlayer.Title]</label>
            <
align>left</align>
            <
aligny>center</aligny>
            <
font>font12</font>
            <
textcolor>grey2</textcolor>
            <
shadowcolor>black</shadowcolor>
            <
visible>Player.HasMedia</visible>
            <include>
VisibleFadeEffect</include>
            <include>
Window_OpenClose_Animation</include>        
        </
control>
    </include> 

or if you don't want the now playing as well remove all to make it
PHP Code:
    <include name="CommonPageCount">

    </include> 

Skins I have done....
[Image: skinsq.png]
And others in the past...

Want to know what I'm working on currently? Check me out on Google+
find quote
igotdvds Offline
Skilled Skinner
Posts: 1,616
Joined: Jul 2009
Reputation: 11
Post: #3
Thanks Jezz, makes all the difference on this new mod.
find quote