is there a way to reset the last clicked currentTarget?

something like "(DisplayObject(e.currentTarget).name).resetAfterE vent();

i tried updateAfterEvent(); but that didnt solve the problem...

basically i have multiple event listeners, one for MOUSE_DOWN, MOUSE_UP, and DOUBLE_CLICKED.
then i have a timer event, where everytime the MOUSE_DOWN lasts for about 3 seconds, the binary socket sends out another number.

for all my event listeners, it has been sending out the right number, but when i use the timer event, it always sends out the last clicked button.

TO SUMMARIZE:
for example, ill hold down "on1" and it will say "on1 was held"

then ill hold down on2, and it will still say "on1 was held"