Agreed. I have a print statement print( "2: exitScene event" )
And it does indeed print out properly each time.
updated: it was not printing out properly.
The culprit:
[code]function scene:exitScene()
print( “thescene: exitScene event\n” )
end[/code]
Should have been:
[code]function scene:exitScene( event )
print( “thescene: exitScene event\n” )
end[/code]
Now I really wonder if this was included in the original storyboard sample code as that is what I built off of. I know others have been saying their exitScene wasn’t firing either.
Silly oversight on my part but I had a bunch of other stuff printing so I assumed everything was ok. Never assume lol. Anyhow, glad its sorted.
Guess its not quite so simple…
My webpopups are not being cleared. Even on exitscene. And its almost intermittent. Something deeper is happening. [import]uid: 42417 topic_id: 25024 reply_id: 101656[/import]