The SoundClock.class file is put to the same folder as the HTML file.
The following is designated with HTML file.

Parameter
Default
Meaning
CODE="SoundClock.class"Indispensable Name is not changed.
( Possibility that change if source program is changed )
WIDTHIndispensable The width of the display window is designated.
( It adjusts with the width of the image gif or jpg )
HEIGHTIndispensable The height of the display window is designated.
( It adjusts with the height of the image gif or jpg )
image Designated with
backred
backgreen
backblue
The image file that uses as the background is designated.
In the case that the image file is in same folder that is included HTML file the file name is designated directly. In the case that the image file is in the folder of a subordinate furthermore relativity is designated.
Relativity designated example) "picture/clockback2.jpg"
As for the kind of the file that is able to handle as the image, there is the following thing.
gif form
jpg form
xbm form
backred0The red proportion of the background is designated. ( 0 to 255 )Default designated be black.
backgreen0The green proportion of the background is designated. ( 0 to 255 )
backblue0The blue proportion of the background is designated. ( 0 to 255 )
digitaltrue Whether the digital clock is displayed or not is designated.
Displays : true
Does not display : false ( Except for true )
analogtrue Whether the analog clock is displayed or not is designated.
Displays : true
Does not display : false ( Except for true )

Below setting parameter regarding the digital clock
h_fontsize20The size of the Hour display letter is designated in a point.
m_fontsize20The size of the Minute display letter is designated in a point.
s_fontsize20The size of the Second display letter is designated in a point.
s01x70 The position of the horizontal axis( X coordinate ) of 1 place of the second is designated with pixel.
( Standard point be the left end of the image )
s01y20 The position of the vertical axis( Y coordinate ) of 1 place of the second is designated with pixel.
( Standard point be the left end of the image )
When '0' is designated the letter becomes outside an image area and be not displayed.
s10x60The position of the horizontal axis( X coordinate ) of 10 places of the second is designated with pixel.
s10y20The position of the vertical axis( Y coordinate ) of 10 places of the second is designated with pixel.
m01x40The position of the horizontal axis( X coordinate ) of 1 place of the minute is designated with pixel.
m01y20The position of the vertical axis( Y coordinate ) of 1 place of the minute is designated with pixel.
m10x30The position of the horizontal axis( X coordinate ) of 10 places of the minute is designated with pixel.
m10y20The position of the vertical axis( Y coordinate ) of 10 places of the minute is designated with pixel.
h01x10The position of the horizontal axis( X coordinate ) of 1 place of the hour is designated with pixel.
h01y20The position of the vertical axis( Y coordinate ) of 1 place of the hour is designated with pixel.
h10x0 The position of the horizontal axis( X coordinate ) of 10 places of the hour is designated with pixel.
Ten places of hour are displayed only in 10 o'clock, 11 o'clock. Blank letter is displayed except for it.( It is not seen )
That case, it changes and adjusts the clock of PC.
h10y20The position of the vertical axis( Y coordinate ) of 10 places of the hour is designated with pixel.

Below setting parameter regarding the analog clock
clock_xCenterThe horizontal axis position( an abscissa ) of the center where displays the clock is designated with pixel.
clock_yCenterThe vertical axis position( an ordinate ) of the center where displays the clock is designated with pixel.
size60The radius of the size of the clock is designated with pixel.

Below setting parameter regarding the sound
soundno sound The file of the sound resource is designated.
The file form is only the "au" form.
In the case that the sound file is in same folder that is included HTML file the file name is designated directly.
In the case that the sound file is in the folder of a subordinate furthermore relativity is designated.
Relativity designated example) "sound/gong.au"


As for the following designated contents I am using.
Even the thing that can omit is designating as an example.
<APPLET CODE="SoundClock.class" WIDTH=400 HEIGHT=300>
<PARAM NAME="image" VALUE="picture/clockback2.jpg">
<PARAM NAME="backred" VALUE="0">
<PARAM NAME="backgreen" VALUE="0">
<PARAM NAME="backblue" VALUE="0">
<PARAM NAME="digital" VALUE="true">
<PARAM NAME="h_fontsize" VALUE="30">
<PARAM NAME="m_fontsize" VALUE="30">
<PARAM NAME="s_fontsize" VALUE="25">
<PARAM NAME="s01x" VALUE="260">
<PARAM NAME="s01y" VALUE="280">
<PARAM NAME="s10x" VALUE="242">
<PARAM NAME="s10y" VALUE="280">
<PARAM NAME="m01x" VALUE="198">
<PARAM NAME="m01y" VALUE="280">
<PARAM NAME="m10x" VALUE="180">
<PARAM NAME="m10y" VALUE="280">
<PARAM NAME="h01x" VALUE="140">
<PARAM NAME="h01y" VALUE="280">
<PARAM NAME="h10x" VALUE="122">
<PARAM NAME="h10y" VALUE="280">
<PARAM NAME="analog" VALUE="true">
<PARAM NAME="clock_x" VALUE="202">
<PARAM NAME="clock_y" VALUE="126">
<PARAM NAME="size" VALUE="97">
<PARAM NAME="sound" VALUE="sound/gong.au">
</APPLET>