Will duplicate addEventListener calls create duplicate listener entries?

Posted by Pup on Stack Overflow See other posts from Stack Overflow or by Pup
Published on 2010-05-04T21:34:13Z Indexed on 2010/05/04 21:38 UTC
Read the original article Hit count: 377

Filed under:

If I have an object that calls

addEventListener(Event.ENTER_FRAME, update);  
addEventListener(Event.ENTER_FRAME, update);

will that add 2 listeners?

© Stack Overflow or respective owner

Related posts about actionscript-3