Hi Guilect,
errors with x,y positions of shapes drawn after the first ellipse
' ellipses
Function OnLoad()
' this is the callback OnLoad. It gets called one time when the web page loads
' put in variables that need to be initialized
' load sounds and images in here also
setBackgroundColor(255,128,128)
EndFunction
Function OnDraw()
' this is the callback OnDraw, it is called once per game loop
' Put all of your drawing commands in here
var iii as number
for iii = 5 to 10 step 5
setColor(0,255,0)
strokeEllipse( 100+iii,100, 90, 10)
setColor(255,255,0)
fillEllipse( 100+iii,100, 90, 10)
next iii
EndFunction