paul-uulabs opened a new issue #989:
URL: https://github.com/apache/royale-asjs/issues/989
In my working with ArrayLists I've found that addItemAt is **not** inserting
a value, it is **setting** a value...
So:
```
var tableData:ArrayList = new ArrayList();
for( var x:int=0; x<100; x++) {
tableData.addItemAt( value[x], 0 );
}
```
Will produce an ArrayList of only 1 item at position 0...(presuming value is
an array 100 length).
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]