I am attempting to use the paged list implementation here:
https://github.com/jamesward/DataPaging/blob/master/src/PagedList.as
This relies on storing 'undefined' values in a vector.
I cannot get this to work. The following does not produce any trace on my
test enviroment:
private const td:Vector.<*> = new Vector.<*>(100);
...
td[0] = undefined;
if( td[0] === undefined ) { trace("yes, it is undefined");
I.E: the values are *null *not *undefined. *
Is this some special compiler option (I'm using FB4.6 with a variety of
SDKs, none of which seem to worl).