- Joined
- Mar 28, 2016
- Messages
- 1,623
- Reaction score
- 1,440
- First Language
- French
- Primarily Uses
- RMMV
hi it is possible to self kill a EventListener ?
If yes how i can performe this ?
example:
thank
If yes how i can performe this ?
example:
PHP:
vidControl.vIntro.addEventListener("timeupdate", function() {
if (this.currentTime > 10) {
//Do Stuff one time
this.removeEventListener('timeupdate',this); // And Do Self KILL, BREAK or DESTROY ?
}
}, false);

