functions: a flag indicating whether there should be pressing the left mouse button
Examples
//Move the mouse cursor over an arc of a parabolavar path:TCSMovePath;var point:TCSMovePoint;var i:integer;for i:=0to100dobegin
point.X:=i*2;
point.Y:=round(point.X*point.X/100);
point.Duration:=round(i/10);
path.add(point);end;
MoveByPath(path);