Appendix A

Color constants

black

blue

cyan

darkgray

gray

green

lightgray

magenta

orange

pink

red

white

yellow

Appendix B

Tags reference

font

Syntax

<font="font face name">...</font>

Shorthand

<f="font face name">...</f>

The <font> tag is used to define what font face is to be used for the following textual data input. Scope goes till the next occurance of <font> or first occurance of </font>.

color

Syntax

<color="foreground color" [, "background color"]>...</color>

Shorthand

<c="foreground color" [, "background color"]>...</c>

The <color> tag lets one specify color the text goes with. Background color parameter is optional. No match checking for the symbolic color values specified is performed, if the color is not found the default one is used.

size

Syntax

<size="(size value)|(+|-size (in|de)crement))">...</size>

Shorthand

<s="(size value)|(+|-size (in|de)crement))">...</s>

The <size> tag controls font size of the currently displayed text. Unsinged values directly define the text size used, while singed values alter the current settings.

align

Syntax

<align="alignment mode">...</align>

Shorthand

<a="alignment mode">...</a>

The <align> is used to align a block of text according to the specified alignment mode.

Alignment modes

  • left  wich basically stands for left-aligned (default alignment) text
  • center  stands for text displayed in the middle of the output area
  • right  puts the text to be output at the right end

img

Syntax

<img src="image file" [animated]>

The <img> tag lets one embed external images to the menu items. The images are located on the basis of the applet's codebase. If an animated gif be specified - provide an "animated" modifier (see the script example for details on usage.

b

Syntax

<b>...</b>

Bold styled text looks like this.

i

Syntax

<i>...</i>

Italic styled text looks like this.

u

Syntax

<u>...</u>

Underline styled text looks like this.

href

Syntax

<href="url" [, title="status message"] [, target="url target"]>...</href>

Shorthand

<h="url" [, title="status message"] [, target="url target"]>...</h>

The <href> tag lets one point items to certain Internet resources and is similar to browser's <a> tag.