How to store a reference to a previously selected target?

is there a way?
for example if i have “normal” function for a button click:
function clikcMenu(e:MouseEvent):void {
e.target.something = whatever;
}
and if i click on some button in my menu, the next time i click again on some other button in my menu, how could i refer to previously clicked button (target) ?