We can set screen colour and pen colour but how do we colour our object. I mean like i want a red ball, as in the inner colour is all red (It does not follow the screen's colour). What command do I need? I tried FILL as I've read that it will flood the area the turtle is with the wanted color but it doesn't recognize this command.
Also i've looked at one of the example provided by MSWLOGO that uses SETFLOODCOLOR but I don't really understand how to this command is used for.
(thanks for anyone that can help)
david's answer: read the Help on FILL carefully. it should work, but it does have some "idiosyncracies" - in particular, it will fill an area bounded by lines you have drawn, but the turtle has to be - by at least 3 units of measurement, i think - inside the lines, not on one of them.
SETFLOODCOLOR picks a colour for the FILL command. it should be called SETFILLCOLOR really! it takes 3 parameters (each in the range 0-255), for degrees of red, blue and green in that order. you can find out what numbers you want by referring to Microsoft Paint Colors...Edit colors...Define Custom Colors...
ask me in class to show you.