> public function createTimeArray():void{
> ... // Cut
> var ta:Array = new Array(); // Here is the problem.The problem is here. You create a local variable [ta]. You overshadow the class member [ta]. Regards, Edward Yakop
> public function createTimeArray():void{
> ... // Cut
> var ta:Array = new Array(); // Here is the problem.The problem is here. You create a local variable [ta]. You overshadow the class member [ta]. Regards, Edward Yakop