Override a function

I have a function:

[AS]function myClick(e:Event):void
{
timerBack.timer.stop();
timerBack.timer.start();
}
[/AS]

and I want to call myClick every time that I click in my buttons (I have a lot of them and don´t want to add a listener to each one)

can I override addEventListener OR MouseEvent.CLICK ??

Thanks!!