Login  Register

Re: about macro

Posted by Jan Eglinger-5 on Jul 09, 2009; 9:19am
URL: http://imagej.273.s1.nabble.com/about-macro-tp3691848p3691851.html

Hi Pavita,


Pavita Tipsombatboon wrote:
> run("Analyze Particles...", "size=0-Infinity pixel circularity=0.00-1.00
> show=Outlines summarize");
>                
> How to select,save as or clear summarize window from this process?
>

did you try to run
  selectWindow("Summary");

before saving the window as text file:
  saveAs("Text", "/path/to/your/folder/"+"filename.xls");

or to close the window:
  selectWindow("Summary");
  close();



Hope that helps,
Jan