If you’re looking for a cross-platform way of having fun, check out this Java version of a classic MineSweeper game.
Play game;
Click two or more blocks of the same type, that touch horizontally or vertically to make them disappear, but pay attention! The more blocks in a group, the higher your score when you click!
Play game;
An arcanoid game writtent in Java. You can play with mouse or keyboard (left, right, space key).
Play Javanoid;
The goal of this game is to shoot the ball into the basket. To shoot you have to leftclick inside the ball and drag the mouse. You will see a line from the middle of the ball to the mouse pointer. When you leave the mouse button, the ball will start moving in the direction of the line. The length of the line indicates the starting velocity. The ball bounces back from the left, the right and the bottom wall and from the ring of …
The html code below shows how an applet parameter would be specified in an HTML file.
<applet code=AppletClassName width=120 height=120>
<param name=parameter1 value=”value1″>
<param name=parameter2 value=”value2″>
</applet>
Here’s how the value of an applet parameter can be retrieved:
String value = applet.getParameter(“parameter1″);