IFont font = FontManager.getInstance().createFont(mtApplication, "SansSerif", 16, MTColor.WHITE, MTColor.WHITE, false);
//New Puzzle button
MTRoundRectangle r = getRoundRectWithText(0, 0, 120, 35, "New Puzzle", font);
r.registerInputProcessor(new TapProcessor(getMTApplication()));
r.addGestureListener(TapProcessor.class, new DefaultButtonClickAction(r));
r.addGestureListener(TapProcessor.class, new IGestureEventListener() {
public boolean processGestureEvent(MTGestureEvent ge) {
TapEvent te = (TapEvent)ge;
if (te.isTapped()){
if (list.isVisible()){