HTML and Greenfoot Important Stuff Flashcards
1
Q
Centre text (HTML)
A
<h1></h1>
2
Q
Link (HTML)
A
<a>link text</a>
3
Q
How to do random direction?
A
Go into public void act()
Type this:
setDirection(Greenfoot.getRandomNumber(4));
move();
setDirection(EAST)