este es un simple ejemplo
Código PHP:
var listaBotones:Array = new Array(bt1, bt2, bt3, bt4, bt5);
addEvent();
function addEvent() {
for (var i:Number = 0; i<listaBotones.length; i++) {
addIdBoton(listaBotones[i],i)
}
}
function addIdBoton(mc, id:Number) {
mc.onRelease=function(){
activoOn(id)
}
}
function activoOn(id:Number) {
for (var i:Number = 0; i<listaBotones.length; i++) {
listaBotones[i]._alpha =(i == id)? 20:100
}
}