Hey brother, in your frog. Instead of all that mumbo, jumbo you had written up replace it with this
**CODE**
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo)
public class Frog extends Mover
{
public void act()
{
checkKeyPress();
}
public void checkKeyPress()
{
if(Greenfoot.isKeyDown("left"))
{
setLocation(getX() - 5, getY());
}
if(Greenfoot.isKeyDown("right"))
{
setLocation(getX() + 5, getY());
}
if(Greenfoot.isKeyDown("up"))
{
setLocation(getX() , getY() - 5);
}
if(Greenfoot.isKeyDown("down"))
{
setLocation(getX(), getY() + 5);
}
}
}
Way to easy haha. Goodluck.
I noticed something for the Alphabet, I haven't tried the numbers yet, but if you look closely the letter that is being chosen seems too be the one at the highest point? Makes it really easy to win :]
2010/7/15
FROGGER
2010/7/2
Best Change Calculator
2009/12/6
PerfomanceFinal2
2009/12/5
Dragon Slayer
2009/12/2
abc123
2009/12/1
Andres' Codepoint Scenario
2009/11/30
Water Works
2009/11/30
Water Works
2009/11/27
Andres' Codepoint Scenario