How to change Menu Title locations

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
jtap06 Offline
Senior Member
Posts: 233
Joined: Jan 2009
Reputation: 0
Location: Chicago, IL
Post: #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!
find quote
jjblues12 Offline
Junior Member
Posts: 39
Joined: Jul 2008
Reputation: 0
Post: #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>
find quote
jtap06 Offline
Senior Member
Posts: 233
Joined: Jan 2009
Reputation: 0
Location: Chicago, IL
Post: #3
Thanks! Ill have a go at it.
find quote