Load the plugin closestPointOnCurve.mll in the plugin manager.
Create a closestPointOnCurve node:
CODE
closestPointOnCurve -name cpocNode -inPosition 1 2 3 yourCurveNode;
This will return the name of the new closestPointOnCurveNode. You should also be able to set your input point in the node's attrbibute editor.
You can then use the command in query mode to get info from the node:
CODE
closestPointOnCurve -q -position cpocNode;
Will return the closest point on the curve.
You can also use these other query flags.
-normal
-tangent
-paramU
-distance
Ian