Java Games »

[11 Feb 2009 | No Comment | 128 views]

A 3D maze game written in Java.
Play game;

Java Games »

[11 Feb 2009 | No Comment | 126 views]

If you’re looking for a cross-platform way of having fun, check out this Java version of a classic MineSweeper game.
Play game;

Java Games »

[11 Feb 2009 | No Comment | 162 views]

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;

Java Games »

[10 Feb 2009 | No Comment | 144 views]

An arcanoid game writtent in Java. You can play with mouse or keyboard (left, right, space key).
Play Javanoid;

Java Games »

[10 Feb 2009 | No Comment | 200 views]

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 …

Java Codes »

[10 Feb 2009 | No Comment | 52 views]

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″);