maybe u already found your answer.
just like the u added the actionlistener to the buttons u have to add the focuslistener to the objects.
scoreTextField.addFocusListener(new AutoSelect())
By the way its much better to use focuslistener then mouselistener in this case. U will have autoselecteted text even with keyboard navigation.
I hope u understand whats the difference between the way u implemented the focuslistener (through an adapter) and the actionListener.
and why u used the button.addactionlistener(this)
I was looking on a more elegant way to implement this behaviour to all my Objects on the form without extending every type of object, or
add the focuslistener to every object.