QUOTE(Outworld1 @ Jan 16 2005, 02:23 PM)
hello
How can I have the memory menu instead of music menu and How can i return in the main menu instead of the config panel when i press B button on the memory menu?
thx
For returning to the main menu instead of the config panel
1.- Open ( default.xip the open memory.xap )
2.- Search for the function ( Function OnBDown() )
there should be 2 of them we need the one at the end of the file it should look like this
CODE
function OnBDown()
QUOTE
function OnBDown()
{
PlaySoundB();
theMemoryMenu.children[0].children[0].MU_back_pod_HL.children[0].appearance.material.param = 1;
theMemoryMonitor.curDevUnit = 8;
theGamesMenuOut.Play();
theMemoryMonitor.enumerationOn = false;
if (bBackToLauncher) { theLauncherLevel.GoTo(); }
else
{
GoToSettings();
//theSettingsMenu.GoBackTo();
//theMainMenu.GoBackTo();
}
Then just add the new text or just copy and paste it all....
CODE
function OnBDown()
QUOTE
function OnBDown()
{
PlaySoundB();
theMemoryMenu.children[0].children[0].MU_back_pod_HL.children[0].appearance.material.param = 1;
theMemoryMonitor.curDevUnit = 8;
theGamesMenuOut.Play();
theMemoryMonitor.enumerationOn = false;
if (bBackToLauncher) { theLauncherLevel.GoTo(); }
else if (nCurMainMenuItem == x) { theMainMenu.GoBackTo(); }
else { GoToSettings(); }
/*{
//GoToSettings();
//theSettingsMenu.GoBackTo();
//theMainMenu.GoBackTo();
}*/
For Changing the menus actions search in the forum for the 4th tab menu there is explained how to change the function on all the tabs in the main menu
I dont know if any one else have already done it so...
Enjoy it and tell me if it worked....

Ohh by the way it still take u back to the config panel if u acces the memory from there or any other way.... if u dont want that to happend and just take u to the main menu... use this code
QUOTE
function OnBDown()
{
PlaySoundB();
theMemoryMenu.children[0].children[0].MU_back_pod_HL.children[0].appearance.material.param = 1;
theMemoryMonitor.curDevUnit = 8;
theGamesMenuOut.Play();
theMemoryMonitor.enumerationOn = false;
if (bBackToLauncher) { theLauncherLevel.GoTo(); }
else
{
//GoToSettings();
//theSettingsMenu.GoBackTo();
theMainMenu.GoBackTo();
}
Now u can Enjoy it...... Se yaa