Diferenciar botones del When any botton click

Estoy creando una aplicación que tiene muchos botones, 25 de ellos hacen una función concreta y está definido en un "Any botton click" pero luego quiero meter otros botones que hacen otra funcion y claro, me salta a lo que tiene dentro el "Any botton click".

He pensado en hacer una subrutina para los 26 botones pero al hacerlo, el "component" de "Any botton click" no existe.

Alguien sabría como diferenciar la funcion de los botones?

Gracias

Create separate button click events for those other buttons and in the Any Button Click event use the not already handled parameter like this

If not already handled
Then do something

Taifun

If you have multiple collections of buttons whose actions depend on which collection they belong to, you can init global lists of the different categories of button components, and apply an IS IN LIST test to each list of button components to see which category a button belongs to.