How do I remove file/movie count?
#1
I want to remove the "(283) Items Page 1/13" from the bottom of a view, any ideas how to do that?
Reply
#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> 
Reply
#3
Thanks Jezz, makes all the difference on this new mod.
Reply

Logout Mark Read Team Forum Stats Members Help
How do I remove file/movie count?0