Hi, I’d like to insert a “try again” button in my app, and I did it using the following solution:
local replay = display.newImage ("replay.png", 560, 0)
local function replay (event)
if event.phase == "ended" then
director:changeScene ("game")
end
end
redbutton:addEventListener ("touch", replay)
the problem is that everytime the user tap the “try again” button, the app will bring him to the “game” scene, without delete the previous “game” scene.
How can I fix my problem?
Please if it’s possible post a simple way, because I’m a Corona SDK Newbie 
THANKS!!! [import]uid: 159775 topic_id: 27998 reply_id: 327998[/import]