HI this my code, am unable to get the length of the array.
package com.mypro {
public class MyEve {
public var process:Array ;
public function MyEve() {
// constructor code
this.process = new Array();
trace("this.process " + this.process)
this.process["CONFIG_XML_LOADING"] = 'Configuration XML Loading';
this.process['CONFIG_XML_LOADED'] = 'Configuration XML Loaded';
trace("this.process +++ " + this.process.length)
}
}
}
OutPut
// Trace
this.process
this.process +++ 0