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: 413
actionscript-3
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