Simple button navigation in cs3

:ponder:I have this code:

stop();

function eventResponse(evt:MouseEvent):void {
gotoAndStop(“one”);}
btn_one.addEventListener(MouseEvent.MOUSE_UP,eventResponse);

function beventResponse(evt:MouseEvent):void {
gotoAndStop(“two”);}
btn_two.addEventListener(MouseEvent.MOUSE_UP,eventResponse);

function ceventResponse(evt:MouseEvent):void {
gotoAndStop(“three”);}
btn_three.addEventListener(MouseEvent.MOUSE_UP,eventResponse);

:(**-Now, I have tried this before with ONE button and it works.

But with more than one button it will just ignores all the buttons.** :deranged:

I find these demonstrations for doing frame navigation but I don’t see a working example for multiple buttons!

HELP–Please.:jailbreak