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
-
player
- The playerpanel for this applet.
-
PlayerApplet()
-
-
destroy()
- Destroy the applet.
-
getPlayerPanel()
- Get the PlayerPanel.
-
init()
- Initialize the applet.
-
start()
- Start the applet.
-
stop()
- Stop the applet.
player
public PlayerPanel player
- The playerpanel for this applet.
- See Also:
- getPlayerPanel
PlayerApplet
public PlayerApplet()
init
public void init()
- Initialize the applet.
- Overrides:
- init in class Applet
getPlayerPanel
public PlayerPanel getPlayerPanel()
- Get the PlayerPanel.
- See Also:
- player
start
public void start()
- Start the applet.
- Overrides:
- start in class Applet
stop
public void stop()
- Stop the applet.
- Overrides:
- stop in class Applet
destroy
public void destroy()
- Destroy the applet.
- Overrides:
- destroy in class Applet
All Packages Class Hierarchy This Package Previous Next Index