| name | description |
SearchStart | this is the complete URL of the page used to begin the search.
it does not have to be the same page that the applet is on, but (due to applet security restrictions)
it does have to be in the same domain. use the full address of the page (http://www.whatever.com/more/page.html).
not optional |
ServerDefault | the server which hosts your web site usually has some sort of default name for
directories when no name is specified. For for most people it is "index.html" or "default.html"
not optional |
BackColor | in order to have the applet blend in with the page, you can specify a background color
by name (red) or hex (#FF00A1). If the parameter is not included, it will default to white. The colors of the applet above
do not match the page to show the amont of screen real estate searchLite uses.
optional |
StatusBarColor | This is the color of all of the labels and the status bar,
in some VMs it is also the color of the start button. The status bar's background is this color, but
it is about two shades darker. It's value falls under the same limits as BackColor, except it will default to green.
Quick hint: avoid headaches by using different colors for the BackColor and StatusBarColor. Also, using a light color for
the status bar is recommended
optional |
XtraOptions | If you wish to let the searcher choose their own options, this will put two checkboxes
in the applet to specify whether the user wants to find exact matches and search other pages. if not specified, the
defaults are to not find exact matches and to search all pages in your site.
optional |
|
for example, the params from the applet above:
<APPLET CODE = "SearchLite.class" WIDTH =180 HEIGHT = 40>
<PARAM NAME=SearchStart VALUE="http://members.aol.com/tleen69203/holzphome.html">
<PARAM NAME=BackColor VALUE="#000011">
<PARAM NAME=StatusBarColor VALUE="#AAAAAA">
<PARAM NAME=ServerDefault VALUE="index.html">
<PARAM NAME=XtraOptions VALUE="false">
</APPLET>
|