xbox-scene.com - your xbox news information source
Quick Links: Main Forums | Xbox360 Forums | Xbox1 Forums | PS3 Forums
Xbox-Scene Forum Help  Search Xbox-Scene Forums   Xbox-Scene Forum Members   Xbox-Scene Calendar

Giganews Usenet Offers: +1150 days binary retention, 99%+ Completion, and Unlimited Speed/Access!

360 ODD Emulators: X360 Key $99 | Wasabi360 FAT $99 | Wasabi360 Slim $99
C4E's iXtreme Burner MAX Drive: LiteOn iHAS124 DROPPED TO JUST $17


Welcome Guest ( Log In | Register )

 Forum Rules Rules
> Drop Down Menus, so easy :)
Little-G
post Dec 15 2007, 04:42 PM
Post #1


X-S Senior Member
**

Group: Members
Posts: 176
Joined: 5-August 05
Member No.: 238913
Xbox Version: v1.4
360 version: v3.0 (falcon)



in order to get the drop down menus from thc lite / thc follow this guide.

first crack open your default.xip/default.xap. at the top you will see

CODE
//only need these if you are going to use the old drop down style hd menus...
//DEF theGamesMenu             TitleMenu
//DEF theApplicationsMenu     TitleMenu
//DEF theEmulatorsMenu         TitleMenu
//DEF theDashboardsMenu     TitleMenu


uncomment all of these functions.

now search for
CODE
InitializeMenus();


until you come across

CODE
    //InitializeMenus(); //not needed with new hd menu - use to init menus if using drop down menus


uncomment this function.

finally search for
CODE
GoToHardDrive();


and replace the function for
CODE
GoToMusicPlayWithSubs();


should look like this

CODE
           else if(nCurMainMenuItem == 2)
           {
               theSettingsMenuIn.Play();
               GoToMusicPlayWithSubs();
           }


close and save default.xap

now open default.xip/music_play_with_subs.xap

search for
CODE
url "music_play_edit/menu.xap"


and replace with
CODE
url "music_play_edit/default3.xap"


close and save music_play_with_subs.xap, save your default.xip, ftp and.... ENJOY
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
 
Reply to this topicStart new topic
Replies(1 - 2)
Little-G
post Dec 18 2007, 10:01 PM
Post #2


X-S Senior Member
**

Group: Members
Posts: 176
Joined: 5-August 05
Member No.: 238913
Xbox Version: v1.4
360 version: v3.0 (falcon)



and here's some simple code to switch between memory style and music play in the config pop.gif

open your default.xip/default.xap and search for "GoToHardDrive();" or "GoToMusicPlayWithSubs();" depending on whcih you're using. replace the function for "HardDriveCheck();" and it should look like this

CODE
           else if(nCurMainMenuItem == 2)
           {
               theSettingsMenuIn.Play();
               HardDriveCheck();
           }


then at the bottom the xap add this

CODE
function HardDriveCheck()
{    
    var IniFile = new Settings;
    IniFile.SetIniSection( "Memory Hard Drive" );
    var a = IniFile.GetIniValue( "Enabled" );
    IniFile.CloseIniFile();
    
    if( a == "true" ) { GoToHardDrive(); }
    else if( a == "false" ) { GoToMusicPlayWithSubs(); }
    else { return; }
}


close default.xap and open up config.xap. search for

CODE
Music Initial Volume:

and underneath it add the new option, this is the two together:
CODE
    configList[i] = "Music Initial Volume:";
    configValues[i] = "c-Music On Boot-volume";
    configSelect[i] = "ConfigKeyB()";
    i = i + 1;
    configList[i] = "Memory Style Hard Drive Menu:";
    configValues[i] = "c-Memory Hard Drive-Enabled";
    configSelect[i] = "ToggleTF()";
    i = i + 1;


finally open your uix.ini and add
CODE
[Memory Hard Drive]
Enabled=true
to the bottom

pop.gif
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
loonytoonz90
post Feb 5 2008, 04:06 AM
Post #3


X-S Member
*

Group: Members
Posts: 79
Joined: 31-January 06
From: camden NJ
Member No.: 270611
Xbox Version: v1.0
360 version: none



nice u got any more for U.I.X???
User is offlineProfile CardPM
Go to the top of the page
+Quote Post





Reply to this topicStart new topic

 

Lo-Fi Version Time is now: 24th May 2013 - 12:36 PM