I struggle with this a bit. My game has replay prompts using modal title screen groups. Not clear when I should remove them, and sometimes they don’t get removed. For Example:
function
showPromptScreen(tStatus)
titleScreenGroup = display.newGroup();
okGame = widget.newButton
{
onRelease = ReplayGame,
}
titleScreenGroup:insert(okGame);
end
Can I remove this title screen group in the replayGame function? I’m not sure where my scope is?
Carey