Working thru tutorial http://shallwelearn.com/joomla/index.php?option=com_content&view=article&id=131:create-a-tic-tac-toe-game-board-lesson-2-java-games-with-greenfoot-&catid=2:java-greenfoot.
1. When I code for a cell bigger than 60, even though I only want 3, it adds more cells - 5 when i use 100. WHY? What I want is a large TIC TAC TOE area.
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo)
/**
* Tic Tac Toe Board.
*
* @author (John)
* @version (07/01/2012)
*/
public class Board extends World
{
/**
* Constructor for objects of class Board.
*
*/
public Board()
{
// Create a new world with 600x400 cells with a cell size of 1x1 pixels.
super(3, 3, 100);
setBackground ("cell.jpg");
2. How do you move the grid to start in upper right hand corner or on left edge instead of centered?
3. I can make the ide larger = top, bottom, left and right resizable but cannot make the class area larger. Is the "World", "Class" and "execution" area fixed.

