Greetings
Updated :
the overlay scene is showing but I cannot hide it by the button x that appearing on screen.
function for closing childscene :
[lua]
local hideOverlay = function(event)
if (“ended” == event.phase) then
composer.hideOverlay(“fade”,100)
print (“Close overlay scene”)
end
return true
end
[/lua]