Insert a path and the moviclip's name inside an Array

I was trying to put a ‘position’ in an Array

// I Create the Array
var matrizFunc:Array=new Array();

// I put what a need inside it
matrizFunc [0] = ‘Tela.AreaInterativaLogin.entrar’;

//I call the Array element to work with teh Listener
matrizFunc[0].addEventListener(MouseEvent.CLICK,TelaMenuInicial);

It doens’t work. Any clue?

tks a lot!