digamos que tengo el evento click:
Código:
ahora a mi button le agrego el evento:function ok_btn_click(event:MouseEvent){ //CODE }
Código:
ok_btn.addEventListener(MouseEvent.CLICK,ok_btn_click);
ahora resulta que el mismo evento le deseo agregar a otros botones mas, seria muy engorroso copiar lo mismo para todos algo inusual en la POO , queria saber si aqui hay algo asi como Handles o manejadores que permitan agregar el mismo evento a todos y luego:
Código:
Díganme!! esto es posible,,FUNCTION CONTROL_EVENTO()HANDLES CONTROL1, CONTROL2, CONTROL3, CONTROL4, CONTROL5 {} //LUEGO CONTROL1.AddEvent.... CONTROL2.AddEvent.... CONTROL3.AddEvent....
gracias por su tiempo
saludos