-
Is it possible for an expression to iteratively build numbered arrays via loop?
Hey folks, hope all is well. I’m hoping to figure out how to automatically kick out a bunch of numbered arrays, like this:
arrayNumber1 = [];
arrayNumber2 = [];
arrayNumber3 = [];
arrayNumber4 = [];
arrayNumber5 = [];
…
arrayNumber99 = [];
etc.My initial knowledge of Javascript came from programming Arduino boards, and in Arduino I’m pretty sure (though not positive) I’ve been able to get this kind of thing to happen; having tried several approaches to get there in After Effects, though, I’m coming up short. Is it just not possible in this ecosystem, or is my ignorance showing? Any ideas?
Thanks folks.