Espero haberte entendido........... un ejemplo pequeño de el datagrid:
Código:
import fl.controls.DataGrid;
//– hacemos la instancia de nuestro componente
var myGrid:DataGrid=new DataGrid();
//– creamos las columnas del componente
myGrid.addColumn(”nombre”);
myGrid.addColumn(”edad”);
myGrid.width=400;
myGrid.rowCount=myGrid.length;
//– mostramos el DataGrid
addChild(myGrid);
El componente debe estar en la libreria, y haber sido linkeado ahi