Hello All!
I have a problem.
In actionscript 2 I was able to make indexed associative arrays. Ex:
var arr:Object = new Object();
arr[0] = {var1:“one”, var2:“two”}
arr[1] = {var1:“a”, var2:“b”}
In actionscript 3 I cant seem to do this.
I get the error below.
[COLOR=Red]TypeError: Error #1009: Cannot access a property or method of a null object reference.
[/COLOR]
Please help! thanks all.