nothing works out of the box...
I'm currently trying to keep track of mouse movements in order to draw a polygon. On MouseDown, I prepare a "templateGraphic" of style "polygon" and
Code: Select all
set the Points of templateGraphic to (MouseLoc() & return)
"On MouseMove newX,newY" I then run the following code:
Code: Select all
local PointList; put the points of the last graphic into PointList
put newX & comma & newY & return after PointList
set the points of the last graphic to PointList
Does anybody have an idea what goes wrong?