So, is it not possible to extend Array class and keep the class/constructor “name” Array.
so you could still call:
var myArr:Array = new **Array**
myArr.newMethodIAdded()
as oposed to:
var myArr:Array = new **ExtendedArray **
myArr.newMethodIAdded()
thx all…