Con As2 podía hacer que se marcara en rojo el texto incorrecto con este código:


function comprova1()
{
for (n1 = 0; n1 < escriure1.length + 1; n1++)
{
if (_root.text1.text.substr(n1, 1) != escriure1.text.substr(n1, 1))
{
_root.escriure1.setTextFormat(n1, n1 + 1, format);
} // end if
} // end of for
} // End of the function


Alguien me puede ayudar con el código necesario para AS3.

Muchas gracias.