import mx.controls.Alert;
public function mCheck():void
{
switch(myMood.text)
{
case 'A':
Alert.show("A");
break;
case 'B':
Alert.show("B");
break;
default:
Alert.show("C");
}
}