Если textFields настроены правильно, то, что вы сделали, должно быть в порядке.
Вот пример того, как это должно работать:
//with the text tool, make two textFields on the stage
//In the Properties window, set the instance name of one to 'dynamicText'
//and set it's text type to be Dynamic Text
//Set the other one to be named 'inputText'
//and make it of text type Input Text
//enter some dummy text in each field to start with
dynamicText.text="pAssw0rd" //for example
inputText.onChanged= function() {
trace("match is "+(dynamicText.text == inputText.text));//true or false
}
Теперь запустите это и попробуйте набратьв поле inputText ...