heyder
07-16-2003, 02:01 PM
Wondering if I want to use the results of a "service call" (is that the right terminolgy?) later in a script do I need to assign it to a variable or does it already get stored as something?
ie...
function getPeople_Result(result) {
peoplelist=result;
}
trace(peoplelist.items[0].name);
ie...
function getPeople_Result(result) {
peoplelist=result;
}
trace(peoplelist.items[0].name);