|
On Saturday 21 November 2009, Roberto Sotto-Maior Fortes de Oliveira wrote:
> I am trying to write a macro code to orient an unskilled user during a
> point selectioning specific application.
>
> However, the selectionType()macro function results value 10 for both Point
> and Multi-Point Selection Tools.
For the pojnt selection (single or multiple) you can find out if you have more
than one point selected via the length of the arrays that hold the
coordinates.
getSelectionCoordinates(xCoordinates, yCoordinates);
print(lengthOf(xCoordinates));
G.
|