Removing favourites from menus

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
bdxbmc Offline
Junior Member
Posts: 17
Joined: Aug 2009
Reputation: 0
Location: London, UK
Post: #1
I'm using the PM3.HD skin and want to remove the favourites from the menus (particularly the home screen). It never gets used and just complicates using it when it accidentally gets navigated to. How can this be done?

As it is for general family use, I'm trying to keep the interface as simple as possible by removing/disabling any unnecessary features.

Thanks.
find quote
Jezz_X Offline
Team-XBMC Skinner
Posts: 5,264
Joined: Jun 2006
Reputation: 55
Location: Earth
Post: #2
Yoy need to open up 720p/home.xml and edit this bit @ line 578
PHP Code:
            <control type="image">
                <
posx>4</posx>
                <
posy>4</posy>
                <
width>37</width>
                <
height>37</height>
                <
texture>home-playmedia-focus.gif</texture>
                <
visible>Control.HasFocus(22)</visible>
            </
control>
            <
control type="button" id="21">
                <
description>Favourites push button</description>
                <
posx>50</posx>
                <
posy>0</posy>
                <
width>50</width>
                <
height>50</height>
                <
label>-</label>
                <
font>-</font>
                <
aligny>-</aligny>
                <
onclick>ActivateWindow(Favourites)</onclick>
                <
texturefocus>home-favourites.png</texturefocus>
                <
texturenofocus>home-favourites.png</texturenofocus>
                <
onleft>22</onleft>
                <
onright>20</onright>
                <
onup>9000</onup>
                <
ondown>9000</ondown>
            </
control
Easiest way would be to just add <visible>false</visible> to control <control type="button" id="21"> hard way is to actually delete the control but then you would need to change the navigation of the stop and play disc buttons

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
bdxbmc Offline
Junior Member
Posts: 17
Joined: Aug 2009
Reputation: 0
Location: London, UK
Post: #3
Thanks. That works.
I edited /usr/share/xbmc/skin/PM3.HD/720p/Home.xml and added "<visible>false</visible>" between "<control type="button" id="21"> and "<description>Favourites push button</description>".

Now, how do I get rid of Scripts, Settings and Power Button. I will need to keep Settings available on a key press.

Thanks.

Bill.
find quote