Re: Macro batch save XY coordinates with Path Writer plugin
Posted by ivitagata on Nov 16, 2010; 2:02pm
URL: http://imagej.273.s1.nabble.com/Macro-batch-save-XY-coordinates-with-Path-Writer-plugin-tp3686437p3686438.html
Hi everyone,
Wayne Rasband replied to me privately and solved this question. I'm posting the relevant solution here so everyone can see it:
>Change
> run("Path Writer", "save=["output + filename"]");
>to
> run("Path Writer", "save=["+output + filename+"]");
This works.
>If this doesn't work try printing out the options string using something like:
> options = "save=["+output + filename+"]";
print(options);