Web Calculator - parameters

All applet parameters

If don't use any param tag, the applet will use the default values.

Note: Permissible values for the colors - any HTML standard color from #000000 to #fffffff or black, white, gray, red, green, blue, cyan, magenta, orange.

<applet width=310 height=260 archive=calculator.jar code="buddysoft.Calculator.class"> <param name="colors" value="#009977, white, #cddddd, black"> For the floating mode only! <param name="btncolors" value="orange, black"/> <param name="btnimg" value="iconname.jpg (.gif)"/> <param name=btnLabel value="Any Label"/> <param name=bg value="white"/> For registered copies only! <param name=text value="BuddySoft Web Calculator, Easy to install and use!"/> </applet>

Applet Dimensions (optional)

<applet width="310" height="260" archive="calculator.jar" code="buddysoft.Calculator.class"></applet>

If both width and height are bigger than 200pix the applet appears in stuck mode on your web pages and conversely.


Applet Colors (optional)

<param name="color" value="bgColor, fgColor, display bg, display fg"/>

Applet background and foreground colors plus display background and foreground colors divided by comma.


For the floating mode only!

Launch Button Colors (optional)

<param name="btncolors" value="orange, black"/>

Both background and foreground launch button colors divided by comma.


Launch Button Icon (optional)

<param name="btnimg" value="icon.jpg (.gif)"/>

The launch button icon image name.


Launch Button Label (optional)

<param name=btnLabel value="Calculator"/>

The launch button label.


For registered copies only!

Display Initial Texts (optional)

<param name=text value="BuddySoft Web Calculator, Easy to install and use!"/>

Both left top and right top text on the display divided by comma.

Web Calculator