Hola GABRIL:
A tu botón ponle como nombre de instancia, por ejemplo:
snd.
En el frame el código escríbelo así:
Código:
snd.onRelease = function() {
if (remitente_txt.text == "") {
remitente_txt.text = "Escriba un nombre o Email antes de enviar";
}
if (asunto_txt.text == "") {
asunto_txt.text = "Escriba un asunto antes de enviar";
}
if (cuerpo_txt.text == "") {
cuerpo_txt.text = "complete el campo";
}
}
Espero haberte sido de ayuda.