home *** CD-ROM | disk | FTP | other *** search
- Applet Morph V1.0 (textonly).
-
- Created by Dolf van der Schaar.
-
- http://www.van-der-schaar.demon.nl
- AR@van-der-schaar.demon.nl
-
- Use the files :
- dtext.ini
- dtext.html
-
- to change the applet to your ideas.
- Read the text below for some information about it.
- Play with it.
-
- Other files needed :
- dtext.class
- LWare.class
- morph.class
- MyGrab.class
- MyPut.class
- ReadIni.class
-
- **********************************************************************************
-
- How the colors work.
-
- Colors are used by a value R G B
-
- r= 0 .. 255
- g= 0 .. 255
- b= 0 .. 255
-
- The number for your color has to be
-
- number = R * 65536 + G * 256 + B
-
-
- **********************************************************************************
- Example of the applet in a HTML file.
-
- Use parameter backcolor to define your backgroundcolor.
- With the width and height you can define the size of the applet.
-
- <p align=center><applet
- code=dtext
- width=300
- height=150>
- <PARAM NAME="BACKCOLOR" VALUE="128">
- </applet>
-
- **********************************************************************************
- Parameters in dtext.ini
-
- size,42 the font size
-
- style,1 the style of the font 0=plain
- 1=bold
- 2=italic
-
- color,255 the color you want to use for the text
-
- text,THIS IS the text you want to use ( max. 4 lines seperated with "," )
-
- morph,15 morph from output to new image ( the last defined text )
- the value here is the number of steps you want to use.
-
- delay,1500 waits for .... milli seconds. ( this example 1,5 seconds )
-
- **********************************************************************************