Digital Clock Applet
This is a Digital Watch which you can insert in your website.
The applet runs on a Java 1.1 VM.
Features
- You can set an URL to a page to be loaded when the user clicks on the watch.
- The color for the digits can be provided or are green by default
Configuration
| name |
description |
required |
example |
| LinkURL |
URL to a page to be loaded on mouse click |
no |
http://www.mysite.com/timetable.html |
| DigitColor |
Color in the format 'rrggbb' where r,g and b are hexadecimal values (0..9,A,B,C,D,E;F) |
no |
000099 |
| CopyrightURL |
this entry is mandatory and not changeable (this is not a link) |
yes |
http://www.tangarena.ch/prod/index.html |
Applet Code
Assuming you have your applet and the associated resources in a subdirectory
"applet" the html applet tag will look the following:
<applet code="TEDigitalWatch" archive="applet/teclock_d.jar" height="80" width="300" align="middle" >
<param name="DigitColor" value="999900" />
<param name="LinkURL" value="http://www.tangarena.ch/prod/index.html" />
<param name="CopyrightURL" value="http://www.tangarena.ch/prod/index.html" />
</applet>
|