EventListener Question

So I am creating a game that has 20 or so different screens. Each screen has all events listed below and you basically swipe or use left or right arrows to go to the next scene:

LetterB:addEventListener( “touch” , talk)
background:addEventListener(“touch”,swipe)
larrow:addEventListener(“touch”,left)
rarrow:addEventListener(“touch”,right)
Runtime:addEventListener(“enterFrame”,move)
button1:addEventListener( “touch”, drive )
button2:addEventListener( “touch”, lift )

Each event though is attached to functions of the same name, but they each have slightly different code in each scene. Do I need to remove all event listener between each scene (this is currently what I am doing) or can they just remain and be redefined in each scene?

Thanks,
Scott [import]uid: 79834 topic_id: 17487 reply_id: 317487[/import]

Are you using director? If so the listeners are removed when the objects are removed on scene change so you would not be able to access them any longer. [import]uid: 52491 topic_id: 17487 reply_id: 66415[/import]