I’m using an onLoad function (importing variables from a text file) and I’m creating arrays within a for loop in the onLoad function.
I’m using something like this:
this["dvdAry" + i] = this[indexAry*].split("##");
So say the first array is called dvdAry0 .
How can I access that Array from a function? Please note the function, the onLoad function and the arrays are all being created on the same timeline.
I’ve tried tracing the array dvdAry0 from the function after the array is created in the onLoad function, but it comes up as undefined. Is the array created on the object that I’m using onLoad on?
I’m using a loadVars Object called loadDVDsText.
Thanks