getSelectionCoordinates

getSelectionCoordinates

我希望能够使用点选择工具在图像中放置一个点,然后读取x和y坐标以在宏中进行变量。

我已经尝试过getSelectionCoordinates,但是没有用。我不想在日志或结果窗口中显示坐标。

任何帮助将非常感激。

最佳答案

getSelectionCoordinates对我来说效果很好,例如:

s = selectionType();

if( s == -1 ) {
    exit("There was no selection.");
} else if( s != 10 ) {
    exit("The selection wasn't a point selection.");
} else {
    getSelectionCoordinates(xPoints,yPoints);
    x = xPoints[0];
    y = yPoints[0];
    showMessage("Got coordinates ("+x+","+y+")");
}


(一个常见的误解是getSelectionCoordinates通常不会返回值-您必须为其指定要设置的变量的名称。)

09-12 00:26