public class button extends CustomButtons
how could I trace the extends of button??
var btn:button = new button()
btn.addEventListener (MOUSE.CLICK, onClick)
function onClick(e:MouseEvent)
{
trace (???) //the output should be CustomButtons…
}