hola M Sassa:
yo tenia el mismo problema hace algun tiempo y lo solucione con esto, solo modificale un poco.
Código:
for (i=0; i<=5; i++) {
botones[i].onRelease = function() {
if (this == bt_1) {
//funcion
}
if (this == bt_2) {
//funcion
}
if (this == bt_3) {
//funcion
}
if (this == bt_4) {
//funcion
}
if (this == bt_5) {
//funcion
}
};
}
esto claro es para los botones, espero te sea de mucha ayuda.
Saludos

...