Click function from one button to another

Have two buttons and want that button2, when clicked, triggers the same action button1.

Bellow the code I’m trying. But what is wrong?


botao1.addEventListener(MouseEvent.MOUSE_UP, botao_clique);
botao2.addEventListener(MouseEvent.MOUSE_UP, botao_clique2);

function botao_clique(e:MouseEvent):void {
	trace ("botao 1")
	}
	function botao_clique2(e:MouseEvent):void {
	
	botao1.botao_clique();
	}

Thanks