When clientside, does this produce any result in your F2 window?
PHP Code:
//#CLIENTSIDE
function onCreated()
{
requesttext("clientrc", 1);
}
function onReceiveText(texttype, textoption, textlines)
{
switch (temp.texttype)
{
case "clientrc":
{
if (temp.textoption == 1)
{
requesttext("folders", "");
}
break;
}
case "folders":
{
echo(format("%s %s %s", temp.texttype, temp.textoptions, temp.textlines));
break;
}
}
}
I do not remember if the filebrowser is returning a giant array or if it sends data in parts, I guess you will find out by trying that.