In addition to groups having X and Y (thanks for the correction), when they are an event.target, they lose those values as event.target
local mygroup = display.newGroup() mygroup:insert(buttonAt10x20y) print(mygroup.x,mygroup.y) -- outputs 10,20 mygroup:addEventListeners("touch",function(e) print(e.target.x,e.target.y) -- outputs 0,0 end)
which is why I thought that. If you have a button as your largest object in the group, you probably lose the ability to detect touch events. You can’t forward those press/release/event from the button so…oh well.