//Setup TUIO Communication handler
        final int port = 3333;
        TuioClient tClient = new TuioClient(port);
        System.out.println("listening to TUIO messages at port " + port);
        tClient.addTuioListener(wwtih);
        tClient.connect();
        wwtih.setSmoothViewChanges(false); // FALSE makes the view fast/choppy!!
        // End of View ==========================================