I am creating an AttributeInspector, and putting it inside a BorderContainer in actionscript, then setting the infowindow.content to the BorderContainer. It keeps failing saying the attributeinspector skin is not found. I have it in my project at com.esri.ags.skins but It keeps failing. I am not sure what I am doing wrong, but any help is appreciated.var bc:BorderContainer = new BorderContainer();
var ai:AttributeInspector = new AttributeInspector();
bc.addElement(ai);
parentApplication.map.infoWindow.content = bc;