It looks like you are trying to get the fields from a table, not a feature layer. The layer with an index of 1 is a table, try using the layer with an index of 0 instead.
You need to wait for the feature layer to load before you can access the fields. So you need to add a LayerEvent.LOAD listener to fLayer.
That did it... thanks!!
import mx.utils.ObjectUtil;
Alert.show(ObjectUtil.toString(fldArr));
life Esri,
You need to useimport mx.utils.ObjectUtil; Alert.show(ObjectUtil.toString(fldArr));