hello…
I have a brackground, and 3 circles/objects.
all of them are in a group.
I can move them really nice.
But I add an extra image/circle.
like a button.
This button has to be ON FRONT all the time
but I can not do that.
All of the objects are inserted in the … local sceneGroup = self.view
for composer
and only the “button” is outside the newGroup that I made.
I guess that’s why is in the back.
I tried different ways and I just can not have that object on front
botoncito = display.newCircle(sceneGroup, 0, 0, 50 ) – BLUE
botoncito:setFillColor(.6, .5, 1)
botoncito.x = display.contentCenterX
botoncito.y = display.contentHeight - 100
botoncito:toFront()
QUESTION
How can I have an object always on front, regardless the group they are in?
Thanks you for your time