Aeon Nox 4 Home Menu Mod Question
#1
I know that you can change between icons/text/text with larger spaces on the main menu, but i was wondering if this is possible.

I want only one item to be visible at a time, so it will be movies, and then when pressed right, only tv shows, etc.

any one know how i can achieve this?
Reply
#2
Bump?
Reply
#3
OK, this can only be done through changes in the code. Keep in mind, though, that when the skin gets updated these edits will be gone, and you'll have to do them again.

- Go to: System -> Skin -> Customizers -> Customize Home Window Furniture -> Press 'Enter' a couple of times, until the 'Furniture Settings' dialog comes up -> Select "Main Menu Layout: Labels (Bigger Gaps)".
- Open "C:\Users\YOURUSERNAME\AppData\Roaming\XBMC\addons\skin.aeon.nox\1080i\Includes_MainMenu.xml".
- Search for this:
Code:
<itemlayout height="225" width="639" condition="Skin.HasSetting(biggergap)">

When you find it, you'll see the code below looks like this:
PHP Code:
>
        <
itemlayout height="225" width="639" condition="Skin.HasSetting(biggergap)">
            <
control type="label">
                <
posx>320</posx>
                <
width>639</width>
                <
textcolor>white5</textcolor>
                <include>
MainMenuLabels</include>
            </
control>
        </
itemlayout>
        <
focusedlayout height="225" width="639" condition="Skin.HasSetting(biggergap)">
            <
control type="label">
                <
posx>320</posx>
                <
width>639</width>
                <
textcolor>$VAR[MainMenuFontColorVar]</textcolor>
                <include>
MainMenuLabels</include>
            </
control>
        </
focusedlayout

- Change the values like this:
PHP Code:
>
         <
itemlayout height="225" width="1200" condition="Skin.HasSetting(biggergap)">
            <
control type="label">
                <
posx>-802</posx>
                <
width>1200</width>
                <
textcolor>white5</textcolor>
                <include>
MainMenuLabels</include>
            </
control>
        </
itemlayout>
        <
focusedlayout height="225" width="1200" condition="Skin.HasSetting(biggergap)">
            <
control type="label">
                <
posx>-802</posx>
                <
width>1200</width>
                <
textcolor>$VAR[MainMenuFontColorVar]</textcolor>
                <include>
MainMenuLabels</include>
            </
control>
        </
focusedlayout

- Save and exit.
Reply
#4
Awesome. Thanks for the help cutsickass. Appreciated, and repped Wink
Reply
#5
how to set main menu items default view icons through code can you help me with that.thank you
Reply

Logout Mark Read Team Forum Stats Members Help
Aeon Nox 4 Home Menu Mod Question0