WARNING: you are not looking at the live version but at an older version.

CMS in general, Daisy in particular:13

image:next_button

Embedded Java Applet

  • Insert an appropriate include tag in a Daisy simple document ...
  • At the document root of your web server create the following directory ...
    • mkdir -p applet/example_000/
  • In the example_000/ directory, create an HTML file taking note of the Java Applet tag code and codebase ...
    • <html>
        <body>
          <applet code="Example_000" codebase="/applet/example_000" width="120" height="80">
            Your browser doesn't support Java applets
          </applet>
        </body>
      </html>
  • Place the Java Applet source code Example_000.java in the example_000/ directory.
  • Compile the Java Applet ...
  • nsure that appropriate read access is enabled ...
    • chmod 444 *.html *.java *.class

image:next_button

Comments (0)