// This macro demonstrates how to write strings to the first // column of the results table, and how to retrieve them. run("Clear Results"); for (i=0; i<=10; i++) { setResult("Label", i, "Label"+i); setResult("Value", i, 1.234*i); } updateResults() for (i=0; i<=10; i++) print(getResultLabel(i)+": "+getResult("Value", i));