im very lost when i need to handle things in the resulthandler from an
httpservice
heres what i got Not working
public function stationloadResult(event:ResultEvent){
var result:Object = event.result;
if(event.lastResult.DATARESULTS.SEVEND_ALOWED == "N")
Alert.show("sevenD not allowed");
else
Alert.show("sevenD is allowed");
}
im trying to understand how to handle referencing the httpservice when
it finishes loading data i can manipulate the flex front end while
looking at specific return data?
hope that makes sense.