Hello all,
Has anyone an advice how to put the table behind?
In the first macro I create an image and a table.
In the second macro I want to modify table behind the image - but the table
occupies the image!
Best regards, Norbert
//======
var tabName = "MyTable.csv";
macro "Create Table and Image [a]"{
close("ABC");
close(tabName);
Table.create(tabName);
Table.setColumn("Nums", newArray(10), tabName);
newImage("ABC", "8-bit ramp", 1000, 600, 1);
run("Maximize");
}
macro "Change table [b]"{
Table.set("Nums", 3, random, tabName);
selectImage("ABC");
}
--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html