when trying to reference a item on the flex form inside a resulthandler from an httpservice i run into error 1009 cannot access method or property
example stationslicense_7D throws the error below....
public function stationloadResult(event:ResultEvent){
var result:Object = event.result;
//stationslicense_7D is a checkbox item
if(event.target.lastResult.DATARESULTS.SEVEND_ALOWED == "N"){
stationslicense_7D.selected = false;
}else{
stationslicense_7D.selected = true;
}

