I created a screen(calculator) with bunch of buttons,i can handle button event with one handler.But i want to know that can we do a one handler for all buttons...... like in java we can perform the task of perticular button by like this
if(event.source=="button1")
{
}
else if(event.source=="button2")
{
}
so,can we do the same thing in mobile Flex programming