"Feel the Beat with Marimba's Bongo"
By Chris Baron
Web Techniques, October 1997

Web Techniques grants permission to use these listings for private or 
commercial use provided that credit to Web Techniques and the author is 
maintained within the comments of the source. For questions, contact
editors@web-techniques.com.

LAB NOTE
LISTING ONE
import java.io.*;
import java.awt.*;
import marimba.gui.*;

public class MyClassName extends PlayerFrame {

    public boolean handleEvent(Event evt) {
        // AWT event handling code here
        return super.handleEvent(evt);
    }

    public static void main(String argv[]) {
        // Create the frame
        MyClassName frm = new MyClassName();
        // load the presentation
        frm.util.setPresentation("mypresentation.gui");
        // play it in the frame
        frm.show();
    }
}