var pics:LoadVars=new LoadVars();
var pictureToken:String;
var tokenCount:String;
pics.onLoad=function(success:Boolean){
pictureToken=pics.pictures; // places file names into a
variable
tokenCount=pics.filecount; // places file count into a
variable
// converts the string list
// of pics to an array
var my_array:Array = pictureToken.split(" ");
for (var i = 0; i<my_array.length; i++) {
trace(my_array
);
// HERE IS WHERE I AM LOST ON WHERE I SHOULD GO
}
}
pics.load("
http://localhost/filelist.php");