I’m trying to see if it’s possible to get all the objects
with the same name. I’m using the following code to load a bunch of
circles on the screen. They all have the same
local myCircle = display.newCircle(30+(yCount\*20), 220+(yCount\*10), 8) myCircle.name = "peg"
I would imagine there is a way to do this but I’m not sure where to even look for such a thing.
Thanks