Hey Kathleen,You could watch for change on activeFeature property on the attribute inspector and whenever that is changed(moving through the attribute inspector), you could use the attributes of the current activeFeature.Something like:private var changeWatcher:ChangeWatcher;
// on lets say application intialize, do the following:
changeWatcher = ChangeWatcher.watch(attributeInspector, "activeFeature", attributeInspector_activeFeatureChangeHandler); //attributeInspector is the AttributeInspector Object
private function attributeInspector_activeFeatureChangeHandler(event:Event=null):void
{
myMap.infoWindow.label="File "+ attributeInspector.activeFeature.attributes.FileNo;
}
Hope that helps.