Login  Register

Re: strange behavior of ROI manager: select multiple ROIs

Posted by Gabriel Landini on Sep 15, 2009; 9:59am
URL: http://imagej.273.s1.nabble.com/strange-behavior-of-ROI-manager-select-multiple-ROIs-tp3690769p3690778.html

On Tuesday 15 September 2009  10:55:12 TomEHG wrote:
> Updated to 1.43.
> It doesn't work with this version as it hasn't worked with an uncounted
> number of previous versions.

Do you mean to just select the first n rois?

You can write a small macro that just sets down the Shift key and then selects
the roi by its number. This seems to work OK:

for (i=0;i<5;i++){
  setKeyDown("shift");
  roiManager("Select", i);
}

i hope it helps.

G.