I don't seem to have a problem with it.
Succes, Bart
// --
class Col extends mx.utils.CollectionImpl {
function Col() {
super();
_items = new Array();
}
}
// --
import Col;
var col = new Col();
col.addItem("hello");
col.addItem("world");
var it = col.getIterator();
while (it.hasNext()) {
var item = it.next();
trace(item);
}
2006/1/31, j.c.wichman <[EMAIL PROTECTED]>:
> Hi,
> im trying to extend mx.utils.CollectionImpl but it doesn't seem to work.
> Is there a restriction to intrinsic classes im not aware of?
>
> greetz
> Hans
> _______________________________________________
> Flashcoders mailing list
> [email protected]
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders