Help again? Object-function problem


public var Tester:Object = {
            clear:{
                help:"Test",
                func:function():void{
                    trace(Test.text);
                }
            }
       }

yes still working on my console :stuck_out_tongue:
and going to bed after this, so i’ll see answer in morning.
When I try to call


Tester["clear"]["func"](); it fails with error 1010.

If I do this however:


trace(Tester["clear"]["help"]);

it works. I suspect it has somthing to do with the :void part.
Thanks!
:garfield::top_hat: