ok here my problem:

Quick Launch MediaCenter=F:\\APPS\\XBMC\\default.xbe <<< works

Quick Launch MediaCenter=F:\\APPS\\MEDIAPLAYER\\XBMC\\default.xbe <<< don't works, folder deep to much

in what way i fix it ? anyone a idea ?


here quicklaunch function:

[CODE]
function QuickLaunch(x)
{
quicklaunch = true;
var g = x;
var info = new Settings;
info.file = "Y:\\-XENIA-\\Config\\xenia-config.xbx";
var a = info.GetValue("Quick Launch " + g);
var b = a.substr(0,1);
var c = a.indexOf("\\");
var d = a.lastIndexOf("\\");
var e;
if(d > 4)
{
e = "\\" + a.substr(c + 2, d - 5);
}
else
{
e = "";
}
var f = a.substr(d + 1);
if(b == "F")
{
launchPath = "\\Device\\Harddisk0\\Partition6" + e;
launchXbe = f;
theLaunchGameLevel.GoTo();
}
else if(b == "C")
{
launchPath = "\\Device\\Harddisk0\\Partition2" + e;
launchXbe = f;
theLaunchGameLevel.GoTo();
}
else if(b == "G")
{
launchPath = "\\Device\\Harddisk0\\Partition7" + e;
launchXbe = f;
theLaunchGameLevel.GoTo();
}
else if(b == "E")
{
launchPath = "\\Device\\Harddisk0\\Partition1" + e;
launchXbe = f;
theLaunchGameLevel.GoTo();
}
else
{
return;
}
}
[CODE]