Any url with aboslute path is failing..
desktop {
bg-color: #003d3d;
bg-image: url( /mainbg.jpg );
color: white;
}
this would get converted to /img/mainbg.jpg
On further source code view (Kuix.java).. I see the line where it says all / chars are ignored..
if (c == '/')
{ // Caution that all '/' character are ignored
if ((c = reader.read()) == '*')
{
commentCapture = true;
c = reader.read();
continue;
}
}
Any inputs on why this is being ignored..
Regards,
Raja Nagendra Kumar,
C.T.O
www.tejasoft.com

