Fonctions d'appel au sein de la Fonction Flash Actionscript 2.0

Je suis en train d'appeler une fonction après je me charge du XML dans Actionscript, et je me demande comment j'ai appeler cette fonction. Exemple:

//Function Declarations
function parentFunction()
{
    function callMe()
    {
     textField.text = "lawl";
    }
}

Maintenant, comment dois-je appeler le "callMe()" fonction dans une autre partie du code, comme une onRelease fonction?

on(release)
{
callMe(); //doesn't work
parentFunction().callMe(); //doesn't work
parentFunction.callMe(); //doesn't work
}

ActionScript 2.0 est tellement bancale! Des idées?

InformationsquelleAutor MattSayar | 2008-09-02