This is what I have.
import acm.graphics.*;
import acm.program.*;
import java.awt.Color;
// -------------------------------------------------------------------------
*/
public class Cartoon extends GraphicsProgram
{
//~ Instance/static variables .............................................
//~ Constructor .................................................. .........
// ----------------------------------------------------------
/**
* Creates a new Cartoon object.
*/
public Cartoon()
{
GOval Face = new GOval(300, 150, 100, 200);
add(Face);
GOval leftEar = new GOval(280, 125, 50, 50);
add(leftEar);
GOval leftInnerEar = new GOval(295, 140, 20, 20);
add(leftInnerEar);
leftInnerEar.setFilled(true);
leftInnerEar.SetColor(red);
Now I get an error "cannot find symbol - method SetColor(java.awt.Color); maybe you meant : getColor() or setColor(Color)"
--- Update ---
I got it, I am an idiot. I had a uppercase "S" in the second line. Thank you for your help