open default.xip/default.xap
goto
CODE
var IniFile = new Settings;
IniFile.SetIniSection( "Dashboard Settings" );
dashStyle = IniFile.GetIniValue( "Dash Style" );
skinName = IniFile.GetIniValue( "Current Skin" );
theCellWallMesh.url = "A:/skins/" + skinName + "/cellwall.xm";
change to
CODE
var IniFile = new Settings;
IniFile.SetIniSection( "Dashboard Settings" );
dashStyle = IniFile.GetIniValue( "Dash Style" );
skinName = IniFile.GetIniValue( "Current Skin" );
cellWallName = IniFile.GetIniValue( "Current Cellwall" );
theCellWallMesh.url = "A:/cellwalls/" + cellWallName + "/" + cellWallName + ".xm";
open default.xip/config.xap & file_manager.xap & hard_drive.xap & memory.xap & music.xap & music_play_with_subs.xap & orbs.xap & settings.xap & settings_style_menu.xap & skins.xap
find Function GetCellWallType
remove
CODE
function GetCellWallType()
{
var IniFile = new Settings;
IniFile.SetIniSection( "Dashboard Settings" );
var a = IniFile.GetIniValue( "Current Skin" );
theCellWallMesh.url = "A:/skins/" + a + "/cellwall.xm";
}
replace with
CODE
function GetCellWallType()
{
var IniFile = new Settings;
IniFile.SetIniSection( "Dashboard Settings" );
var a = IniFile.GetIniValue( "Current Cellwall" );
theCellWallMesh.url = "A:/cellwalls/" + a + "/" + a + ".xm";;
}
now you must create the folder structure for the cellwalls. It is very similar to the skins.
user.ineterface.x.dash/cellwalls/cellwallname/cellwallname.xm
now you must add to your uix.ini
look for
CODE
[Dashboard Settings]
Current Skin=Cubewall
Dash Style=modded
Current Orb=Dopeleaf
Games Orb=Newspikes
Apps Orb=Rings
Emus Orb=Twirly
Dash Orb=Gasorb
or something like that. all you really need to find is
CODE
[Dashboard Settings]
under that add
CODE
Current Cellwall=
after = put the name of the cell wall you want to use
there you go it should work fine!
I have been working on a way to add this to the settings panel like the skins and orbs with no luck so far. if anyone would like to give it a try let me know and i will give you what i have so far. Also i would like to do the same thing with backgrounds maybe.