IBM Bamba for Java

The IBM Bamba for Java applet can be placed in an HTML page using the following syntax. All the attributes (code, codebase...) immediately following the opening APPLET tag shown below in the figure are needed. Of the params "src" is mandatory and "cabbase" is needed, all others are optional and their default values are explained below.

<APPLET 
  code     = "BambaPlayer.class"
  codebase = "/JavaBamba"
  archive  = "BambaPlayer.zip"
  width    = 250
  height   = 50  >
 <param name="src"          value="sample.iba">
 <param name="cabbase"      value="BambaPlayer.cab">
 <param name="autostart"    value="false">
 <param name="showcontrols" value="true">
 <param name="bkcolor"      value="c0c0c0">
 <param name="border"       value="frame">
 <param name="colornw"      value="404040">
 <param name="colorse"      value="FFFFFF">
</APPLET>

The following sections now describe in further detail the elements of the syntax

Applet attribute values

These are the attributes of the applet tag interpreted by the browser itself.

Applet param values

These are elements of the applet tag interpreted by the applet code - with the exception of the cabbase param for Microsoft Internet Explorer.

Examples