Hola, antes de que alguien te pegue un codigo con algo parecido y diez mil cosas mas.... xDDD
Es tan facil que te lo hice en un momento en un código limpio y ordenado ;)
Código AS3:
Ver originalvar texto1:String = "";
var texto2:String = "";
b1.addEventListener(MouseEvent.CLICK, dicehola);
function dicehola(event:MouseEvent):void
{
if (texto1 == "")
{
texto1 = "Hola";
campotexto.text = texto1+" "+texto2;
}
else if (texto1 == "Hola")
{
texto1 = "";
campotexto.text = texto1+" "+texto2;
}
}
b2.addEventListener(MouseEvent.CLICK, dicegato);
function dicegato(event:MouseEvent):void
{
if (texto2 == "")
{
texto2 = "Gato";
campotexto.text = texto1+" "+texto2;
}
else if (texto2 == "Gato")
{
texto2 = "";
campotexto.text = texto1+" "+texto2;
}
}