Hi, is there a way to remove objects when using storyboard.stage?
For example :
[lua]local scoreText1 = display.newText( “Hello World!”, 100, 200, native.systemFont, 16 )
local display_stage = display.getCurrentStage()
display_stage:insert( storyboard.stage )
display_stage:insert( scoreText1 )
– load title screen
storyboard.gotoScene( “mainMenu”, “fade” )
[/lua]
When I get to mainMenu scene I dont want to show the scoreText1 object. But in the other scenes that I made I want to show scoreText1 object. Is there a way to remove the scoreText1 object when using storyboard.stage?
Shirley