Class marimba.gui.PlayerApplet
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class marimba.gui.PlayerApplet

java.lang.Object
   |
   +----java.awt.Component
           |
           +----java.awt.Container
                   |
                   +----java.awt.Panel
                           |
                           +----java.applet.Applet
                                   |
                                   +----marimba.gui.PlayerApplet

public class PlayerApplet
extends Applet
An applet wrapper for Presentations. To display a presentation in an HTML page you need to put use following applet tag:
	<applet code=marimba.gui.PlayerApplet width=300 height=200>
	<param name=presentation value=example.gui>
	</applet>
In addtion to that you need to make sure that the marimba classes are accessible to the applet. Note that scripting does not work inside most browsers.
Version:
1.5, 10/10/96
Author:
Arthur van Hoff

Variable Index

 o player
The playerpanel for this applet.

Constructor Index

 o PlayerApplet()

Method Index

 o destroy()
Destroy the applet.
 o getPlayerPanel()
Get the PlayerPanel.
 o init()
Initialize the applet.
 o start()
Start the applet.
 o stop()
Stop the applet.

Variables

 o player
  public PlayerPanel player
The playerpanel for this applet.
See Also:
getPlayerPanel

Constructors

 o PlayerApplet
  public PlayerApplet()

Methods

 o init
  public void init()
Initialize the applet.
Overrides:
init in class Applet
 o getPlayerPanel
  public PlayerPanel getPlayerPanel()
Get the PlayerPanel.
See Also:
player
 o start
  public void start()
Start the applet.
Overrides:
start in class Applet
 o stop
  public void stop()
Stop the applet.
Overrides:
stop in class Applet
 o destroy
  public void destroy()
Destroy the applet.
Overrides:
destroy in class Applet

All Packages  Class Hierarchy  This Package  Previous  Next  Index