I was wondering If I can remove an object in a group.
What I want to do is to transfer an object from one group to another
its like this:
g1 = display.newGroup() g2 = display.newGroup() object = display.newRect(centerX,centerY,100,100) g1:insert(object) --remove object from g1 and transfer it to g2 g2:insert(object)
in this way, whatever I do to g1 whether change its X and Y or its scale, the object will not be affected
thanks in advance
