Login  Register

Re: Log window screen position

Posted by BenTupper on Mar 04, 2010; 12:20am
URL: http://imagej.273.s1.nabble.com/Log-window-screen-position-tp3689125p3689126.html

Hello,

On Mar 3, 2010, at 7:01 PM, Benn, Douglas K. wrote:

> I would be grateful if someone can tell me how to set the screen  
> location (0,0) for a Log Window?
>

Assuming that you are using the macro language try the following...

if (isOpen("Log")){
        selectWindow("Log");
        setLocation(0,0);
}


Ben