| The Information Overlaid Toolkit: ; Referance Manual Edition 2.2, for Information Overlaid Version 2.3; 25th October 2002 | ![]() | ||
|---|---|---|---|
| Prev | Next | ||
the Easel applet is included in a page byusing the HTML <applet> tag. The easiest way to get the parameters of this tag correct is to use the easel_applet_tag function to write it:
<script language='JavaScript'> easel_applet_tag("mymap", "/overlaid", 330, 330); </script> <param name='copyright' value='Copyright 1999-2002 Interactive Informati on Ltd'> <param ...> ... </applet>
<applet MAYSCRIPT codebase='/overlaid' archive='easel.jar' code=Easel name='mymap' width=330 height=330>
The parameters of the <applet> tag are:
This indicates that the applet will want to call JavaScript functions.
This points to where the instalation of Information Overlaid where the applet can be found.
The name of the file containing the applet.
The name of the applet itself.
The name of the applet within the HTML page. Used to reference it from JavaScript.
The size of the applet window.