Since I can't hide the Turtle, it seemed that I could move the Turtle as needed and record the x,y into an array and then draw it with DrawCurve.
Just for testing:
(place turtle)
Turtle.Move(100)
SX()
For xyx = 1 to 36
Turtle.Turn(10)
Turtle.Move(5)
SX()
endfor
TextWindow.WriteLine("TP:"+tp)
TextWindow.Pause()
Drawings.DrawCurve("path","Blue","3",tp)
GraphicsWindow.DrawImage("path",100,100)
Sub SX
thisindex=thisindex+1
tp[thisindex]=Turtle.X+","+Turtle.Y
EndSub
_________________________________________________________
The array seems ok in the form of x,y
When I run it though, SB crashes with no error message.
Any assistance would be greatly appreciated!
TIA
Dan