xboxscene.org forums

Author Topic: Uix 4 Options, 3 Tabs  (Read 110 times)

-pSy-

  • Archived User
  • Newbie
  • *
  • Posts: 3
Uix 4 Options, 3 Tabs
« on: March 14, 2006, 03:30:00 AM »

I want to have 4 tabs on the main menu, so I can make it like like an un-modded box.  I see there are 4 option in the ini, and in the settings for re-naming hte tabs, but there is no 4th tab...

It it possible to enable it?  or is it a glitch in the development...

Thanks!

-Greg C. <pSy>
Logged

Odb718

  • Archived User
  • Hero Member
  • *
  • Posts: 925
Uix 4 Options, 3 Tabs
« Reply #1 on: March 14, 2006, 11:21:00 PM »

follow this tutorial.
If you have questions ask in there
Logged

-pSy-

  • Archived User
  • Newbie
  • *
  • Posts: 3
Uix 4 Options, 3 Tabs
« Reply #2 on: March 15, 2006, 01:28:00 AM »

I did finaly find it on here, although the one you suggested is much more confusing.  I went with the:

open default.xip/default.xap
CODE
3;//

change to:
CODE
4;//


then find:
CODE
control DEF theMainMenuJoy Joystick

and replace:
CODE
            else if(nCurMainMenuItem == 2)
            {
            }

with:
CODE
            else if(nCurMainMenuItem == 2)
            {
                theSettingsMenuIn.Play();
                theHardDrive.ExecuteFile("e:\\apps\\boxplorer\\default.xbe" );
            }


Now to find out how to make the LED change colors.  SetLED(#); doesn't work anymore.
Logged