Go Back  
Reply
 
Thread Tools
Old 07-27-2012   #11
aldostools
Homebrew Developer
 
aldostools's Avatar
 
Join Date: Sep 2010
Location: dev_hdd0/game/BLES80608
Posts: 937
Likes: 900
Liked 1,225 Times in 480 Posts
Mentioned: 573 Post(s)
Tagged: 0 Thread(s)
Originally Posted by samson View Post
I've been trying to add another submenu to webradio for somaFM (is that possible?), but just ended up adding it underneath, and i am adding a webgames submenu, a planetarium to webtools, and ps3ultimate to homebrew, oh and discovered that radio switching works when fully zoomed out.
Yes it is possible to add another submenu. The following structure of the xml code, worked for me:

Edit: See the new code 5 posts below.
__________________
~ Dreams and dedication are a powerful combination.
... multiMAN is a perfect demonstration.

Last edited by aldostools; 07-27-2012 at 07:06 PM.
aldostools is offline   Reply With Quote
Likes: (2)
Old 07-27-2012   #12
stussy1
 
stussy1's Avatar
 
Join Date: Sep 2010
Posts: 1,032
Likes: 702
Liked 263 Times in 191 Posts
Mentioned: 31 Post(s)
Tagged: 0 Thread(s)
awsome work samson noticed a bit of freeze on youtube hopefully you get it working 100% what more i love about it you got the onscreen keyboard
thank you
stussy1 is offline   Reply With Quote
Old 07-27-2012   #13
samson
Homebrew Developer
 
samson's Avatar
 
Join Date: Feb 2010
Posts: 1,070
Likes: 578
Liked 613 Times in 304 Posts
Mentioned: 76 Post(s)
Tagged: 0 Thread(s)
@aldostools thanks i'll try that

if you want to see how its looking at the moment, this adds somaFM with online icons under web radio, a planetarium and a few very good point and click web/flash games to webtools. First post updated.

REMOVED
__________________

Last edited by samson; 08-08-2012 at 04:04 PM.
samson is offline   Reply With Quote
Likes: (2)
Old 07-27-2012   #14
mckenziesdaddy
Member
 
Join Date: Sep 2011
Location: York,PA USA
Posts: 528
Likes: 12
Liked 96 Times in 63 Posts
Mentioned: 33 Post(s)
Tagged: 0 Thread(s)
Since I have never used this program, But it looks interesting. Does this allow you but put your PSN games in alphabetical order?
mckenziesdaddy is offline   Reply With Quote
Old 07-27-2012   #15
samson
Homebrew Developer
 
samson's Avatar
 
Join Date: Feb 2010
Posts: 1,070
Likes: 578
Liked 613 Times in 304 Posts
Mentioned: 76 Post(s)
Tagged: 0 Thread(s)
Originally Posted by mckenziesdaddy View Post
Since I have never used this program, But it looks interesting. Does this allow you but put your PSN games in alphabetical order?
had a look and no in the XMBM+ game manager it lets you sort it by creation date ascending and descending, recently played and format. @stussy1 i didnt do most of it just adding a bit to the links menu.
__________________
samson is offline   Reply With Quote
Old 07-27-2012   #16
aldostools
Homebrew Developer
 
aldostools's Avatar
 
Join Date: Sep 2010
Location: dev_hdd0/game/BLES80608
Posts: 937
Likes: 900
Liked 1,225 Times in 480 Posts
Mentioned: 573 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)
Old 07-27-2012   #17
mckenziesdaddy
Member
 
Join Date: Sep 2011
Location: York,PA USA
Posts: 528
Likes: 12
Liked 96 Times in 63 Posts
Mentioned: 33 Post(s)
Tagged: 0 Thread(s)
@aldostools wow thank you I will install and take a look. Can you also be in a album to sort it that way?
mckenziesdaddy is offline   Reply With Quote
Likes: (1)
Old 08-08-2012   #18
samson
Homebrew Developer
 
samson's Avatar
 
Join Date: Feb 2010
Posts: 1,070
Likes: 578
Liked 613 Times in 304 Posts
Mentioned: 76 Post(s)
Tagged: 0 Thread(s)
@aldostools the ps3dev wiki firmware page has been removed, i didnt want to cause problems for me or anyone so @ps3hen can you remove that, thanks.

@euss sorry if it was me that made you remove it, i promise to fix my files later today
__________________

Last edited by samson; 08-08-2012 at 07:10 AM.
samson is offline   Reply With Quote
Likes: (1)
Old 08-08-2012   #19
aldostools
Homebrew Developer
 
aldostools's Avatar
 
Join Date: Sep 2010
Location: dev_hdd0/game/BLES80608
Posts: 937
Likes: 900
Liked 1,225 Times in 480 Posts
Mentioned: 573 Post(s)
Tagged: 0 Thread(s)
@samson
Ok. I removed the firmware page from my XMBM+ mod and updated the link for Showtime 3.99.425

@euss my apologies too
__________________
~ Dreams and dedication are a powerful combination.
... multiMAN is a perfect demonstration.
aldostools is offline   Reply With Quote
Likes: (2)
Old 08-08-2012   #20
DEFAULTDNB
 
DEFAULTDNB's Avatar
 
Join Date: Mar 2012
Posts: 8,948
Likes: 6,265
Liked 3,838 Times in 2,494 Posts
Mentioned: 952 Post(s)
Tagged: 0 Thread(s)
Perhaps it's time for a secondary repo for firmware files to be set up, that you guys can access them from?
__________________
DEFAULTDNB is offline   Reply With Quote
Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



PS3Hax.net is Copyright © 2010-2013.
Use of this site is governed by our Terms of Use and Privacy Policy. All Trademarks and images are owned by their respected owners.
Posts and links are subject to each author on this forum and are no way affiliated with the operations and/or opinions of ps3hax.net
All times are GMT -5. The time now is 12:10 AM.