in each xap in defalt.xip you'll notice the following at the top
CODE
DEF theGlobal Transform
{
visible false
children
[
Shape
{
appearance Appearance { material Material { } }
geometry DEF theCellWallMesh Mesh
}
]
scale 0 0 0
translation 500 0 0
}
function GetCellWallType()
{
var IniFile = new Settings;
IniFile.SetIniSection( "Dashboard Settings" );
var a = IniFile.GetIniValue( "Current Skin" );
theCellWallMesh.url = "A:/skins/" + a + "/cellwall.xm";
}
maybe your orbs.xap is missing this
you can also get fancy and try
CODE
function GetCellWallType()
{
var IniFile = new Settings;
IniFile.SetIniSection( "Dashboard Settings" );
var a = IniFile.GetIniValue( "Current Orb" ); // 5 to choose from
theCellWallMesh.url = "A:/orbs/" + a + "/" + a + ".xm";
- dazza's code -