backgroundPan.setText("Pan anywhere on the background!");
backgroundPan.setPickable(false);
this.getCanvas().addChild(backgroundPan);
backgroundPan.setPositionGlobal(new Vector3D(app.width/2f, app.height/2f + 1*verticalPad,0));
getCanvas().registerInputProcessor(new PanProcessorTwoFingers(app));
getCanvas().addGestureListener(PanProcessorTwoFingers.class, new DefaultPanAction());
//Add component multi-touch gestures
MTTextArea dragOnly = new MTTextArea(mtApplication, font);
dragOnly.setFillColor(textAreaColor);
dragOnly.setStrokeColor(textAreaColor);