Re: 2 questions about macro command
Posted by
Gabriel Landini on
Apr 03, 2007; 9:52am
URL: http://imagej.273.s1.nabble.com/2-questions-about-macro-command-tp3699865p3699867.html
On Tuesday 03 April 2007 09:18:18 Tomohiro Shirakawa wrote:
> 1.
> Is it possible to pause macro, setting the interval?
> If possible, please tell me the command.
You can delay execution with
wait(time_in_ms);
but you cannot pause, do something else interactively and carry on.
For that you could do 2 macros and run one after the other, doing the
interactive bit in between the 2 runs.
> 2.
> I have referred to “ImageJ Macro Language” page in ImageJ website,
> but is there any site with more detailed instruction or command list
> on the web?
Help>Macro Functions
takes you to:
http://rsbweb.nih.gov/ij/developer/macro/functions.htmlG.