View Single Post
Old 07-27-2012   #16
aldostools
Homebrew Developer
 
aldostools's Avatar
 
Join Date: Sep 2010
Location: dev_hdd0/game/BLES80608
Posts: 941
Likes: 905
Liked 1,227 Times in 482 Posts
Mentioned: 575 Post(s)
Tagged: 0 Thread(s)
@samson
I updated my XMBM+ mod to version 0.21.2 with your new links
You can update it online, if you use my mod.

The new webradio links are in a submenu

This is an example of the code that I used for the submenu:
Code:
	<View id="seg_links_somafm_stations">  <--// sub menu id //-->
		<Attributes>
			<Table key="somafm">
				<Pair key="icon"><String>/dev_hdd0/game/XMBMANPLS/USRDIR/IMAGES/shoutcast.png</String></Pair>
				<Pair key="title"><String>SomaFM Stations</String></Pair>
				<Pair key="child"><String>segment</String></Pair>
			</Table>
		</Attributes>
		<Items>
			<Query class="type:x-xmb/folder-pixmap" key="somafm" attr="somafm" src="#seg_links_somafm_station_list"/>
		</Items>
	</View>
	<View id="seg_links_somafm_station_list">
		<Attributes>
			<Table key="somafm">
				<Pair key="child"><String>segment</String></Pair>
 			</Table>
		</Attributes>
		<Items>
			<Query class="type:x-xmb/folder-pixmap" key="somafm" attr="somafm" src="#seg_links_somafm"/>
		</Items>
	</View>
	<View id="seg_links_somafm">
<!--// samson's code for seg_links_somafm goes here //-->
	</View>

@mckenziesdaddy
The XMBM+ has a "Game Manager" option, that let you browse your PSN games sorted by title (ascending only).

Game > XMB Manager Plus > Game Manager > By Category > All Categories

You can also customize your XMB to sort by title or any other field editing the explore_view.txt:

Code:
In the folder dev_hdd0/home/00000001/etc is a file called explore_view.txt
If your account is not the first one, then just find the corresponding 0000000? in your home folder and use that instead of 00000001

Open that file with a text editor and search for the following string (Note: the search string is one continuous line):

There are 3 strings that you need to replace

&root.sort_selected.game_format=sort_game.time_created_descend
&root.sort_selected.game_tags=sort_game.time_created_ascend
&root.sort_selected.game_all=sort_game.time_created_descend

replace with


&root.sort_selected.game_format=sort_game.time_created_descend
&root.sort_selected.game_tags=sort_game.title_ascend
&root.sort_selected.game_all=sort_game.title_ascend
Then in the XMB you press and select Group Content > All
.. your content will be sorted by title (ascending).
__________________
~ Dreams and dedication are a powerful combination.
... multiMAN is a perfect demonstration.

Last edited by aldostools; 07-27-2012 at 07:34 PM.
aldostools is offline   Reply With Quote
Likes: (2)