Array Size

Is there a function that gives back the dimensions of a container in eggPlant?

SenseTalk doesn’t technically have arrays, although lists are roughly equivalent to them. And while you can have lists of lists, they don’t have fixed dimensions, so there’s no n x n for them. You can get the “size” of a list like this:

put the number of items in myList

Not sure if that answers your question or not.