quote:
Originally posted by L. Coyote
Btw, from what I gather, it's not the timer, but what you do with it, what matters
That sounds familiar
quote:
Originally posted by L. Coyote
I once needed this type of array and had to do this:
code:
var arr = new Array();
arr[0] = new Array();
arr[0][0] = "blah";
I've used multi-dimensional arrays before, but never with that method so I'm not sure if that is correct (I could be wrong though)