* Action to execute when the button is pressed
*/
public TextButton(String textLabel, Runnable action) {
super(action);
myTextNode = new Text("");
myTextNode.setOffset(BORDER_WIDTH, BORDER_HEIGHT);
myTextNode.setFont(NengoStyle.FONT_BUTTONS);
myTextNode.setTextPaint(NengoStyle.COLOR_FOREGROUND);
frame = Path.createRectangle(0, 0, 100, 100);