Kodi Community Forum
How to get rid of the top status bar showing available item info? - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Aeon Nox: Silvo (https://forum.kodi.tv/forumdisplay.php?fid=142)
+---- Thread: How to get rid of the top status bar showing available item info? (/showthread.php?tid=195240)



How to get rid of the top status bar showing available item info? - ArrowGM - 2014-05-15

to be clear, this semi transparent bar does not appear when i am in main menu but appears in movies, music etc on top most part of the display indicating clock in the middle, available items in the right side and now playing media if something is being played. i wanna disable it or hide it


RE: How to get rid of the top status bar showing available item info? - braz - 2014-05-15

Best way is probably to open up includes.xml and search for "topbar". Add the following code inside the topbar control:

<visible>false</false>


RE: How to get rid of the top status bar showing available item info? - ArrowGM - 2014-05-16

where is includes.xml


RE: How to get rid of the top status bar showing available item info? - Vaikin - 2014-05-16

addons\skin.aeon.nox.5\1080i

And to be clear, it'll have to go after the control group, like this:
Code:
    <include name="Topbar">
        <control type="group">
            <visible>False</visible>



RE: How to get rid of the top status bar showing available item info? - ArrowGM - 2014-05-17

Thanks man


RE: How to get rid of the top status bar showing available item info? - ArrowGM - 2014-05-23

dude i have a problem SadSad changing the file doesnt seem to take any effect, and there is no includes.xml only admin.xml
when i change <visible>False</visible> under <visible>False</visible> nothing happens. even the skin doesnt crash. please help me out


RE: How to get rid of the top status bar showing available item info? - ArrowGM - 2014-05-23

bro it seems that it aint working as i am saving it with txt extension ... would you please edit the xml for me, i dont know anything about editing xml. please help me out. thanks


RE: How to get rid of the top status bar showing available item info? - Vaikin - 2014-05-23

Assuming you're on windows it's something like: C:\Users\<username>\AppData\Roaming\XBMC\addons\skin.aeon.nox.5\1080i\includes.xml

As for editing xml files, notepad works just fine. The key is making sure that when you "save as..." the file type is "all files" not ".txt". See the screenshot if you're confused...

http://i.imgur.com/raYfhjn.png


RE: How to get rid of the top status bar showing available item info? - ArrowGM - 2014-05-24

bro top bar is still visible, just the number of videos, music etc has gone...


RE: How to get rid of the top status bar showing available item info? - Vaikin - 2014-05-24

Then you did it in the wrong spot? here's before and after for me...

With one little change:
Code:
    <!-- Navigation Bar -->
    <include name="Topbar">
        <control type="group">
        <visible>false</visible>
            <animation effect="slide" start="0,-90" end="0,0" delay="800" time="480" condition="Window.Previous(home)">WindowOpen</animation>
            <animation effect="slide" end="0,-90" start="0,0" time="480" condition="Window.Next(home)">WindowClose</animation>



RE: How to get rid of the top status bar showing available item info? - merlin_ie - 2015-09-04

(2014-05-16, 06:51)Vaikin Wrote: addons\skin.aeon.nox.5\1080i

And to be clear, it'll have to go after the control group, like this:
Code:
    <include name="Topbar">
        <control type="group">
            <visible>False</visible>

many thanks for this Big Grin


RE: How to get rid of the top status bar showing available item info? - Shinjiru - 2016-01-31

I followed the instructions in this thread to remove the "topbar", but there is still a shadow where the bar was. What specifically do I need to edit in order to remove this shadow?

Here is a screenshot of what I'm referring to. Notice the shadow that runs all along the top of the image above the red arrows.
Image

I'm running Kodi 15.2 and Aeon Nox 5.7.3.

I'd appreciate some advice on this matter. Thanks.


RE: How to get rid of the top status bar showing available item info? - BigNoid - 2016-01-31

(2016-01-31, 00:00)Shinjiru Wrote: I followed the instructions in this thread to remove the "topbar", but there is still a shadow where the bar was. What specifically do I need to edit in order to remove this shadow?

Here is a screenshot of what I'm referring to. Notice the shadow that runs all along the top of the image above the red arrows.


I'm running Kodi 15.2 and Aeon Nox 5.7.3.

I'd appreciate some advice on this matter. Thanks.
See this commit.


RE: How to get rid of the top status bar showing available item info? - Shinjiru - 2016-01-31

(2016-01-31, 00:11)BigNoid Wrote:
(2016-01-31, 00:00)Shinjiru Wrote: I followed the instructions in this thread to remove the "topbar", but there is still a shadow where the bar was. What specifically do I need to edit in order to remove this shadow?

Here is a screenshot of what I'm referring to. Notice the shadow that runs all along the top of the image above the red arrows.


I'm running Kodi 15.2 and Aeon Nox 5.7.3.

I'd appreciate some advice on this matter. Thanks.
See this commit.
That's what I needed! Thanks for the help and for all the work you've done on Aeon Nox.