prueba algo mas o menos asi:
Código:
my_btn.onRelease = function() {
valor = random(8);
switch (valor) {
case 0 :
mi_txt.text = "algo";
break;
case 1 :
mi_txt.text = "algo";
break;
case 2 :
mi_txt.text = "algo";
break;
case 3 :
mi_txt.text = "algo";
break;
case 4 :
mi_txt.text = "algo";
break;
case 5 :
mi_txt.text = "algo";
break;
case 6 :
mi_txt.text = "algo";
break;
case 7 :
mi_txt.text = "algo";
break;
}
};