QUOTE(SpIdErXeN @ Feb 20 2005, 04:32 PM)
Hi Mad, I searched the default.xap, but there are 5 or 6 references to
var IniFile = new Settings;
can you post the sections of the default.xap that needs editing, because i think i may have 2 section entries that may not have IniFile.CloseIniFile(); in them. Please give us n00bs a helping hand and show us how you fixed it. Thanks!

Find this in the default.xap
CODE
function initialize()
{
musicOnBoot = false;
currentAlbum = 0;
currentTrack = 0;
var IniFile = new Settings; //this is the one I mean!
IniFile.SetIniSection( "Dashboard Settings" );
dashStyle = IniFile.GetIniValue( "Dash Style" );
skinName = IniFile.GetIniValue( "Current Skin" );
theCellWallMesh.url = "A:/skins/" + skinName + "/cellwall.xm";
Put this line
CODE
IniFile.CloseIniFile(); //Closing the INI
below
CODE
theCellWallMesh.url = "A:/skins/" + skinName + "/cellwall.xm";