View Single Post
  #3  
Old 12-13-2006, 01:17 AM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
When clientside, does this produce any result in your F2 window?
PHP Code:
//#CLIENTSIDE

function onCreated()
{
  
requesttext("clientrc"1);
}

function 
onReceiveText(texttypetextoptiontextlines)
{
  switch (
temp.texttype)
  {
    case 
"clientrc":
    {
      if (
temp.textoption == 1)
      {
        
requesttext("folders""");
      }
 
      break;
    }

    case 
"folders":
    {
      echo(
format("%s %s %s"temp.texttypetemp.textoptionstemp.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.
__________________
Skyld
Reply With Quote