home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1997 October / PCO1097.ISO / FilesBBS / FREI / MORPH.EXE / explain.txt < prev    next >
Encoding:
Text File  |  1997-07-19  |  1.6 KB  |  70 lines

  1. Applet Morph V1.0 (textonly).
  2.  
  3. Created by Dolf van der Schaar.
  4.     
  5.     http://www.van-der-schaar.demon.nl
  6.     AR@van-der-schaar.demon.nl
  7.  
  8. Use the files :
  9.             dtext.ini
  10.             dtext.html
  11.  
  12. to change the applet to your ideas.
  13. Read the text below for some information about it.
  14. Play with it.
  15.  
  16. Other files needed :
  17.             dtext.class
  18.             LWare.class
  19.             morph.class
  20.             MyGrab.class    
  21.             MyPut.class
  22.             ReadIni.class
  23.  
  24. **********************************************************************************
  25.  
  26. How the colors work.
  27.  
  28. Colors are used by a value   R G B
  29.  
  30.     r= 0 .. 255
  31.     g= 0 .. 255
  32.     b= 0 .. 255
  33.  
  34. The number for your color has to be 
  35.  
  36. number = R * 65536 + G * 256 + B
  37.  
  38.  
  39. **********************************************************************************
  40. Example of the applet in a HTML file.
  41.  
  42. Use parameter backcolor to define your backgroundcolor.
  43. With the width and height you can define the size of the applet.
  44.  
  45. <p align=center><applet
  46. code=dtext
  47. width=300
  48. height=150>
  49. <PARAM NAME="BACKCOLOR" VALUE="128">
  50. </applet>
  51.  
  52. **********************************************************************************
  53. Parameters in dtext.ini
  54.  
  55. size,42        the font size
  56.  
  57. style,1        the style of the font   0=plain 
  58.                     1=bold
  59.                     2=italic
  60.  
  61. color,255    the color you want to use for the text            
  62.  
  63. text,THIS IS    the text you want to use ( max. 4 lines seperated with "," )
  64.  
  65. morph,15    morph from output to new image ( the last defined text )
  66.         the value here is the number of steps you want to use.
  67.  
  68. delay,1500     waits for .... milli seconds. ( this example 1,5 seconds )
  69.  
  70. **********************************************************************************