How to remove your top bar
#1
Hello, I know many probably like that top bar that you see in a video view, the one that adds all the shortcuts like going from movies to tv shows without going through the main menu.

Well, personally, I don't care for it... I'm constantly accidently hitting it when I'm just trying to click on the left menu.. anyway, though I may be the only one who doesn't like it, I figured Id post how to get rid of it.. Its really easy..

Just open the Includes_MediaMenu.xml file and find:
Code:
<control type="button">
            <include>HiddenObject</include>
            <visible>!Skin.HasSetting(kioskmode)</visible>
            <hitrect x="50" y="0" w="1870" h="10" />
            <onfocus>ActivateWindow(playercontrols)</onfocus>
        </control>

and replace it with:
Code:
<!-- BEGIN REMOVE TOPBAR -->
<!--        
        <control type="button">
            <include>HiddenObject</include>
            <visible>!Skin.HasSetting(kioskmode)</visible>
            <hitrect x="50" y="0" w="1870" h="10" />
            <onfocus>ActivateWindow(playercontrols)</onfocus>
        </control>
-->
<!-- END REMOVE TOPBAR -->

And *poof* its gone... no more hitting it when you don't mean to.
My Madnox Mods | Nox Version Guide
---------------------------------------------------------------
Movie Logo Requests | Studio Logo Requests
Logo's Made So Far:
838
Reply
#2
Nice find, I don't much care for it either. Thanks
Reply
#3
Friend I found in this path, but it keeps popping up.

Path:
C:\Users\Kyro2007\AppData\Roaming\XBMC\addons\skin.aeon.nox\1080i

It does not disable it here?
Image
Reply
#4
? how on earth do you have that on the left? I've never seen it over there? What nox version is that?
My Madnox Mods | Nox Version Guide
---------------------------------------------------------------
Movie Logo Requests | Studio Logo Requests
Logo's Made So Far:
838
Reply
#5
(2013-06-05, 21:17)ShadowTek Wrote: ? how on earth do you have that on the left? I've never seen it over there? What nox version is that?

Press left, then left again to access this menu I think. It's definitely on Nox 4.19
Reply
#6
Oh.. I only use a mouse so thats why I guess I've never seen it... give me a few and I'll see how to get rid of it over there as well.
My Madnox Mods | Nox Version Guide
---------------------------------------------------------------
Movie Logo Requests | Studio Logo Requests
Logo's Made So Far:
838
Reply
#7
Thank you.
I'll be waiting.
Reply
#8
Ok, this was a tricky one... anyway..

Open includes.xml

Find:
Code:
<include name="Objects_MediaMenuButtonIcons">
        <width>450</width>
        <height>95</height>
        <textoffsetx>82</textoffsetx>
        <textoffsety>28</textoffsety>
        <aligny>top</aligny>
        <texturefocus border="8">views/tripanel/listselect_fo.png</texturefocus>
        <texturenofocus border="3">settings/listselect_nf2.png</texturenofocus>
        <alttexturefocus>views/tripanel/listselect_fo.png</alttexturefocus>
        <alttexturenofocus>settings/listselect_nf2.png</alttexturenofocus>
        <font>Font_Reg29</font>
        <textcolor>grey2</textcolor>
        <colordiffuse>$VAR[FocusTextureColorVar]</colordiffuse>
        <focusedcolor>white6</focusedcolor>
        <onleft>ClearProperty(viewtypeselect,home)</onleft>
        <onleft>ActivateWindow(1121)</onleft>
        <radiowidth>98</radiowidth>
        <radioposx>308</radioposx>
    </include>

Replace with:
Code:
<include name="Objects_MediaMenuButtonIcons">
        <width>450</width>
        <height>95</height>
        <textoffsetx>82</textoffsetx>
        <textoffsety>28</textoffsety>
        <aligny>top</aligny>
        <texturefocus border="8">views/tripanel/listselect_fo.png</texturefocus>
        <texturenofocus border="3">settings/listselect_nf2.png</texturenofocus>
        <alttexturefocus>views/tripanel/listselect_fo.png</alttexturefocus>
        <alttexturenofocus>settings/listselect_nf2.png</alttexturenofocus>
        <font>Font_Reg29</font>
        <textcolor>grey2</textcolor>
        <colordiffuse>$VAR[FocusTextureColorVar]</colordiffuse>
        <focusedcolor>white6</focusedcolor>
        <onleft>ClearProperty(viewtypeselect,home)</onleft>
<!-- BEGIN Remove side quicknav menu -->
<!--
        <onleft>ActivateWindow(1121)</onleft>
-->
<!-- END Remove side quicknav menu -->
        <radiowidth>98</radiowidth>
        <radioposx>308</radioposx>
    </include>

Open Includes_MediaMenu.xml
Find:
Code:
<include>QuickNavLabel</include>
Replace with:
Code:
<!-- BEGIN Remove side quicknav menu -->
<!--
            <include>QuickNavLabel</include>
-->
<!-- END Remove side quicknav menu -->

Note: Be careful on that first edit as the include group just above it looks almost exactly the same, so make sure you select the correct one!
My Madnox Mods | Nox Version Guide
---------------------------------------------------------------
Movie Logo Requests | Studio Logo Requests
Logo's Made So Far:
838
Reply
#9
my friend you are to be congratulated, note 10 to you.
You should do a tutorial and put in the area for those who want to remove.

But in your tutorial shows the two, both the first and the second to remove at the top and the left ^^.

OBSº
With this beautiful knowledge that you have you could help me with one thing I try to solve the so long.
Reply

Logout Mark Read Team Forum Stats Members Help
How to remove your top bar0