dColumbus
09-28-2007, 05:52 PM
I'm unclear on how to grab the information once this function is executed
from main.asc
application.onConnect = function(clObj) {
this.acceptConnection(clObj);
}
Client.prototype.getFiles = function() {
var fileList = new File("/streams/_defInst_/");
var temp = fileList.list();
return temp;
}
How would I then take the call and display the results in a List component
in Flex?
from main.asc
application.onConnect = function(clObj) {
this.acceptConnection(clObj);
}
Client.prototype.getFiles = function() {
var fileList = new File("/streams/_defInst_/");
var temp = fileList.list();
return temp;
}
How would I then take the call and display the results in a List component
in Flex?