whenever i call the function :
storyboard.hideOverlay(“fade”, 400 )
the overlay ends and then stars again for like 1 second or so…
and even the :
function scene:overlayEnded( event )
function is called (right after the destroy overlay function is called)
i checked if i’m accidently touching somthing in the scene undernith that calls the overlay again
but i don’t.
i turn on overlay like this
local options =
{
effect = “fromBottom”,
time = 400,
params =
{
groupID = groupID,
},
}
storyboard.showOverlay( “groupCommentsOverlay”, options )
and turn it off like this:
storyboard.hideOverlay(“fade”, 400 )
my corona build is : 2393 i’m building for Android with Windows 7
does anyone know how to fix this problem ?