Thursday, 1 December 2011

Action Script


import fl.data.DataProvider;
import fl.controls.dataGridClasses.DataGridColumn;

myGrid.move(10,10);
myGrid.setSize(300, 200);

var col_img:DataGridColumn = new DataGridColumn("Image");
myGrid.addColumn(col_img);
col_img.width = 60;
col_img.cellRenderer = loaderCellRenderer;

var col_desc:DataGridColumn = new DataGridColumn("Description");
myGrid.addColumn(col_desc);

var textFormat1:TextFormat = new TextFormat();
textFormat1.size = 16;
textFormat1.color = 0x333333;
textFormat1.bold = true;
textFormat1.font = "Arial";

myGrid.setStyle("headerTextFormat", textFormat1);

var textFormat2:TextFormat = new TextFormat();
textFormat2.size = 10;
textFormat2.font = "Verdana";

myGrid.setRendererStyle("textFormat", textFormat2);

var myData:Array = [{Image: "http://www.newgrounds.com/dump/draw/339a74f8071f1b259453624e34a00895.jpg", Description: "Tom", Description2: "Cat number 1"},
{Image: "http://www.newgrounds.com/dump/draw/44e45c25c50747dba0d1a5f2859eb10f.jpg", Description: "Bill", Description2: "Cat number 2"},
{Image: "http://www.newgrounds.com/dump/draw/598b5ee98e29201f20488e10d5e9338e.jpg", Description: "Jim", Description2: "Cat number 3"},
{Image: "http://www.newgrounds.com/dump/draw/2645ec8e90e95b2ea3db6c9ce82f3976.jpg", Description: "George", Description2: "Cat number 4"},
{Image: "http://www.newgrounds.com/dump/draw/2b2e7648a2486a7c6e994cf29e37852c.jpg", Description: "Dan", Description2: "Cat number 5"},
{Image: "http://www.newgrounds.com/dump/draw/9154eb1525566b58e0ee41abb8f87d7b.jpg", Description: "David", Description2: "Cat number 6"}
];

myGrid.dataProvider = new DataProvider(myData);
myGrid.rowHeight = 30;
myGrid.rowCount = myGrid.length

No comments:

Post a Comment