I have some arguments (an array, as it happens) that I'm passing into the constructor of a class. But I want the arguments to be accessible outside of just the constructor function.
At the moment I'm using this terrible workaround...
... public var publicArray:Array = new Array(); public function theConstructor(theArray):void { publicArray = theArray; ...
So defiing a public array in the class dec., and then pointing it at the argument array in memory (so not actually duplicating the information (as emptying the public array also destroys information in the argument array))...