Hi,
im using composer and touch listener.
but im not sure is the remove touch work,
because when i re enter the scene, it seems it has 2 listener, the action execute twice.
when i reenter again it executed 3 times, and so on.
here’s my listener code
page01.touch = onpage01touch
page01:addEventListener( “touch”, page01 )
page02.touch = onpage02touch
and here’s my removal code
page01:removeEventListener( “touch”, onpage01touch)
page02:removeEventListener( “touch”, onpage02touch )
thanks