home *** CD-ROM | disk | FTP | other *** search
/ Más de 2,500 Juegos / CD3.iso / zipdat / 3229 / 3229.txt next >
Text File  |  2000-08-13  |  6KB  |  163 lines

  1. FALLING  STARS
  2.  
  3. (c)1996 RJHM van den Bergh
  4.  
  5. ---------------------------------------------------------------------------
  6.  
  7. This Java Applet is TOTAL FREEWARE.
  8. You may even sell it and make profit off it.
  9. You may even distrubute it.
  10.  
  11. This all under one condition you may not make changes to the program.
  12. If you want a changed version contact the author rvdb@nedernet.nl
  13. The purpose off this program is to advertise this site.
  14. So more visitors will come.
  15.  
  16. DISCLAIMER :
  17. Because this is a free product the use is at your own risk.
  18. Because it's for free we don't accept any claims.
  19. However if you encounter any bugs please report them to us.
  20.  
  21. ---------------------------------------
  22. TECHNICAL NOTES : USER INSTRUCTION :
  23.  
  24. STEP 1 :
  25. Insert the following in your html file :
  26. (between the <body> and </body> tags)
  27. <APPLET CODE="FallingStars.class" WIDTH=480 HEIGHT=270 align=middle>
  28. Sorry Your browser doesn't support Java.
  29. Use a java enabled browser and a 32 bit operating system
  30. Such as Windows 95 and (Ms explorer 3.0 or Netscape 2.0 or higher
  31. </APPLET>
  32.  
  33. STEP 2 :
  34. Put the following files in the same directory as
  35. the html file .
  36. FallingStars.class    (the java applet program)
  37. fallingstars.cab      (used only by Ms Explorer it contains all files in a compressed form)
  38. ship.gif              (picuture off ship)
  39. shipexplode.gif       (picture off exploding ship)
  40. star.gif              (picture off a star)
  41. shipexplode.au        (sound off exploding ship)
  42. explosion.au          (sound off exploding star)
  43. laser.au              (sound off the laser)
  44. alert.au              (sound off siren)
  45.  
  46. NOTE : WATCH the letter cassing off the files .
  47. Some ftp and old unpakcing software changes the letter cassing.
  48. (FallingStar.class is not equal to fallingstar.class etc.
  49. You then will get the message class FallingStar not found).
  50.  
  51. DISCRIPTION OFF TAGS :
  52. <APPLET CODE="FallingStars.class" WIDTH=480 HEIGHT=270 align=middle>
  53. This tells the browser that there is
  54. an applet on this html page.
  55. The CODE attribute ONLY tells the browser the name off the java applet program.
  56. To change the adress off this class file use the codebase attribute.
  57. Note : the codebase attribute in this case also changes the adress off
  58. the other files.
  59. Example :
  60. <applet codebase=http://www.blabla.com/blabladir/bladir/ code=someblabla.class height=100 width=100>
  61. Width and heigth are the size off the java applet
  62. Note you can change this applet to any size you want.
  63. It automaticly adjust all parameters.
  64.  
  65. Sorry Your browser doesn't support Java.
  66. Use a java enabled browser and a 32 bit operating system
  67. Such as Windows 95 and (Ms explorer 3.0 or Netscape 2.0 or higher
  68. You can put any standard html tags between the applet start and endtag.
  69. If a browser doesn't support applets this standard html tags will be executed.
  70. (most modern browsers support java)
  71. (There is also a plug in for java for Windows 3.1x from IBM)
  72. (windows 3.1x is a 16 bit operating system)
  73.  
  74. </APPLET>
  75. this is the applet endtag
  76.  
  77. ---------------------------------------------
  78. GAME DISCRIPTION :
  79. You can use the keyboard or mouse.
  80. KEYBOARD:
  81.    spacebar    = fire laser
  82.    up arrow    = fire laser
  83.    s or S      = Togles the sound siren
  84.    arrows      = go left or right
  85.    esc         = cancels the game
  86.  
  87. MOUSE :
  88.    moves       = left and right
  89.    left button = fire laser
  90.  
  91. NOTE : the mouse only works if it is over the applet.
  92. NOTE : a mouse move overides the keyboard move.
  93.  
  94. STORY :
  95. The USS Enterprice is grounded on a planet.
  96. The klingons have increased the gravity off this planet.
  97. So the enterprice can't take off.
  98. Your task is to shoot as many falling stars to survive.
  99.  
  100. --------------------------------------------------------------------
  101. FAQ:
  102.  
  103. JAVA.LANG.APPLETSECURITY EXCEPTION
  104.  
  105. Some applet will not work if started localy with
  106. an Explorer 3.01 3.02 and 4.0.
  107. But they will work if started from the net.
  108. Microsoft made a very rigid security ristriction on applets.
  109. There where many complains abouth this restriction,
  110. because it makes it impossible to test applets localy.
  111. There where many complains abouth this restriction so
  112. microsoft made it possible to install
  113. another Java Virtual Machine on the Explorer.
  114. http://www.microsoft.com/java/download/dl_vmsp2.htm
  115.  
  116. Note: that this download only works if you haven't start
  117. an applet.
  118. So close the Ms Explorer and restart it and go to this url.
  119.  
  120. ------------------------------------------------------------------
  121.  
  122. BUGFIX:
  123. 1:Two loops where discovered that could eat up to much resources.
  124. (Note that if the program doesn't respond it could be that it
  125. hasn't got the focus.
  126. Click on the applet to retain the focus.)
  127. 2:A possibility of a synchronisation error was discovered.
  128. It can be caused by a system (OS) repaint call.
  129. 3: Netscape 6.0beta seems to have implemented the Sun Java runtime module version 1.3
  130. This JRE does seem to have trouble with classfiles that where optimized with HashApplet0.8.
  131. HashApplet 0.8 a freeware Java applet optimizer that I used for over three years.
  132. Anyway the class files in this email are optimized with another program.
  133. The disadvantage they are 40% bigger.
  134. Hope they do fix the problem at Netscape side.
  135.  
  136. Improvement:
  137. Added is the fallingstars.cab file
  138. and the <PARAM NAME="CABBASE" VALUE="fallingstars.cab"> tag
  139. The cab file is only used by Ms Explorer it contains all the files in a compressed form.
  140. Other browsers will ignore it.
  141.  
  142. Please report bugs or comments questions related to this program to
  143. rvdb@nedernet.nl
  144. or rvdb@comweb.nl
  145.  
  146.  
  147. -------------------------
  148.  
  149. Notice:
  150. My site http://www.nedernet.nl/~rvdb will be up untill end of the year 2000.
  151. This is because my provider has merged with another company.
  152. All homepages are transfered to another domain.
  153.  
  154. I've set up a mirror site at my new server:
  155. http://alpha.comweb.nl/~rvdb
  156.  
  157. Still a lot of work to do to create a fully working mirror site.
  158.  
  159. Enjoy:
  160. RJHM van den Bergh
  161. rvdb@comweb.nl
  162.  
  163.