var google:Array = datagridID.selectedIndices;
Now is this equal to the one below.
var google:Array = ["0","1", "2"];
My problem is the above one its not taking as array, but when i define it like this it does.
Alert.show(google) gives me 0,1,2
for each(var i:String in google) {
Alert.show(dg.selectedItems[i]["member_id"]);
}
The above code yeilds me only one value.