En teoria tienes un boton y dentro de ese boton un texto según tu codigo, Así podria ser:
Cita: bt1.addEventListener(MouseEvent.CLICK, animacion);
function animacion(event:MouseEvent):void {
if (event.target.valor.text == "0") {
event.target.circulo.gotoAndPlay(2);
event.target.valor.text = "1";
}
}