How to change Menu Title locations
#1
Hi,

I recently switched over to XBMC and am lovin the Aeon skin. I just added the Weather and Adult sections to the home screen. I would like to position the "Adult" selection right after "TV Shows" on the menu bar. Does anyone know how to do this?

Thanks!
Reply
#2
I haven't taken any time to verify this, but I would recommend starting by editing the 720p\Homescrollers.xml file. I'm pretty sure you could swap the positions of "Weather" and "Adult" by switching the order of the <item> segments below. These <item> segments exist within the wraplist control for the main menu.

If this change doesn't suffice (or my message is unclear), let me know and I'll look into it further.

-James


Code:
<item id="10">
    <description>My Pictures</description>
    <label>WEATHER</label>
    <onclick>XBMC.ActivateWindow(MyWeather)</onclick>
    <visible>Skin.HasSetting(weather)</visible>
</item>
<item id="12">
    <description>My Videos</description>
    <label>ADULT</label>
    <onclick>Skin.SetBool(videoadult)</onclick>
    <onclick>Skin.Reset(videomovies)</onclick>
    <onclick>Skin.Reset(videoclips)</onclick>
    <onclick>Skin.Reset(videomusic)</onclick>
    <onclick>Skin.Reset(videotv)</onclick>
    <onclick>XBMC.ActivateWindow(MyVideoFiles,$INFO[Skin.String(adultpath)])</onclick>
    <visible>Skin.HasSetting(adult)</visible>
</item>
Reply
#3
Thanks! Ill have a go at it.
Reply

Logout Mark Read Team Forum Stats Members Help
How to change Menu Title locations0