Odd capture behavior for 'Quote Original'
Any of you notice bizzare capture of previous posts when the 'Quote Original' button is pressed? This is what I am getting lately (from another thread, of course) ...
> public class Turtle extends Object
> {public static final double DEGREE = Math.PI / 180;
>
> public static final int WIDTH = 760, HEIGHT = 600;
> public static final Color RED = Color.red, BLUE =
> = Color.blue,
> BLACK = Color.black,GRAY =
> ack,GRAY = Color.gray,
> YELLOW = Color.yellow,PINK =
> ellow,PINK = Color.pink,
> ORANGE = Color.orange,GREEN =
> ange,GREEN = Color.green,
> MAGENTA = Color.magenta, WHITE =
> agenta, WHITE = Color.white,
>LIGHT_GRAY = Color.lightGray,
>TURTLE_GREEN = Color.darkGreen;
> Color darkGreen =
> new Color(22, 114, 41);
>
> that is the code from Turtle.java and i'm trying to
> figure out how to make a Dark Green where I can
> switch to it by doing
> turtleName.switchTo(Turtle.DARK_GREEN);

