Hi, I don't konow how to draw circles, but i had wrote a program to change the fontsize automaticlly, maybe similar to your second question.
"make the circle incrementally bigger or smaller (preferably a pixel
at a time) by pressing a button, and then logging the final size."
below are codes showing what I had done in my program, I just type in, not debuged yet, just showing the main idea.
dim again as long
dim radius as long
again=1
radius=10
while again
cnvs.Circle 640, 512, radius ' in my original program, it's a textdisplay object
' presenting a word, if there is a response, the object
' will disappear, Which object can draw circle?
if object.response="a" then
again=0 ' press "a" then finish
elseif object.response="b" then
radius=radius+1 ' press "b" darw larger circle
else
radius=radius-1 ' press other key draw small circle
endif
wend
--
Chunhui Chen
______________
Beijing Normal University
&
University of California, Irvine