My Groups are in tables, like this:
group = {} group[1] = display.newGroup() group[2] = display.newGroup() group[3] = display.newGroup()
I use this group for scrolling(left->right and vice versa)
if I use this:
group[whateverNumber]:removeSelf() group[whateverNumber]=nil
Will it remove the objects on it only? or the group itself will be removed?
with regards to memory, if it the display.group is not removed will it consume memory?