Re: Result window in macro

Posted by Wayne Rasband on
URL: http://imagej.273.s1.nabble.com/Result-window-in-macro-tp3698804p3698805.html

> I would like to know whether there is any way to get rid of the result
> window within a macro. I just use the measurement to do further
> processing within the macro but I don't need the numbers after
> processing...

   if (isOpen("Results")) {
       selectWindow("Results");
       run("Close");
   }

-wayne