Hello.I need to create an attribute inspector window with actionscript, because the field inspectors need to be created dynamically. In mxml, I can just go <esri:FieldInspector id="myFieldInspector" featureLayer="{myLayer}" fieldName="MYFIELD" label="My Field"> <esri:renderer> <fx:Component> <esri:DropDownListField> <esri:dataProvider> <s:ArrayCollection> <fx:Object label="Red" value="RED"/> <fx:Object label="Green" value="GREEN"/> </s:ArrayCollection> </esri:dataProvider> </esri:DropDownListField> </fx:Component> </esri:renderer> </esri:FieldInspector>.In actionscript, I can go:myFieldInspector.renderer = myFieldInspectorRenderer, and then do the renderer in a separate mxml.The fieldInspector should be a textInput or a textArea, and changes to those fields should go to the database.What should the renderer contain for this? The fieldInspector has correct the featurelayer and the field name.