QUOTE(gravity14369 @ Jun 18 2005, 09:47 PM)
Could someone please tell me how to change the "music" tab in the main menu. I want it to launch a game in the dvd drive and not launch the music that it does now. please let me know, thx...
Go into default.xip/default.xap. Look for this:
CODE
control DEF theMainMenuJoy Joystick
Then under that should be:
CODE
if(nCurMainMenuItem == 0)
{
theMusicMenuIn.Play();
GoToMusic();
}
Replace it with:
CODE
if(nCurMainMenuItem == 0)
{
theSettingsMenuIn.Play();
AutoLaunch();
}
Now just rename the music tab to whatever you want and set UIX to not autolaunch media on insert.
If you want to keep the Music tab, but add another one that has the function I just showed you, then do the following:
Go into default.xip/default.xap
Search for
CODE
m_nbuttons
There are 2 of them so you need the one that looks like this:
CODE
m_nbuttons = 3;//number of buttons in main menu
Change the "3" to a "4".
Now go back to the
CODE
control DEF theMainMenuJoy Joystick
Under that should be:
CODE
else if(nCurMainMenuItem == 2)
{
}
Make it look like this:
CODE
else if(nCurMainMenuItem == 2)
{
theSettingsMenuIn.Play();
AutoLaunch();
}
Now you should have 4 tabs and one of them launches the dvd drive while keeping the functionality of the others. Now just rename the tab to whatever you want and set it to not autolaunch media on insert.