menus are off the screen

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
8 messages Options
Reply | Threaded
Open this post in threaded view
|

menus are off the screen

Krieger, Donald N.
I just loaded Fiji on my laptop which has a 1440x768 size screen.
The tall menu I get when I use File --> Import is off the screen at the top and bottom and I've been unable to get to it.
What am I missing?

Thanks - Don


--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
|

Re: menus are off the screen

ctrueden
Hi Don,

As a workaround, try pressing L for the Command Finder. This is a quick
launch tool which avoids the need to navigate the menu system.

Regards,
Curtis
On Apr 13, 2016 4:51 PM, "Krieger, Donald N." <[hidden email]> wrote:

I just loaded Fiji on my laptop which has a 1440x768 size screen.
The tall menu I get when I use File --> Import is off the screen at the top
and bottom and I've been unable to get to it.
What am I missing?

Thanks - Don


--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
|

Re: menus are off the screen

Krieger, Donald N.
That works - <ctrl>L on my machine.  It's Ubuntu 14.04.
Thanks - Don


> -----Original Message-----
> From: ImageJ Interest Group [mailto:[hidden email]] On Behalf Of
> Curtis Rueden
> Sent: Wednesday, April 13, 2016 6:16 PM
> To: [hidden email]
> Subject: Re: menus are off the screen
>
> Hi Don,
>
> As a workaround, try pressing L for the Command Finder. This is a quick launch
> tool which avoids the need to navigate the menu system.
>
> Regards,
> Curtis
> On Apr 13, 2016 4:51 PM, "Krieger, Donald N." <[hidden email]> wrote:
>
> I just loaded Fiji on my laptop which has a 1440x768 size screen.
> The tall menu I get when I use File --> Import is off the screen at the top and
> bottom and I've been unable to get to it.
> What am I missing?
>
> Thanks - Don
>
>
> --
> ImageJ mailing list: http://imagej.nih.gov/ij/list.html
>
> --
> ImageJ mailing list: http://imagej.nih.gov/ij/list.html

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
|

Re: menus are off the screen

Gabriel Landini
In reply to this post by Krieger, Donald N.
On Wednesday 13 Apr 2016 21:48:30 you wrote:
> I just loaded Fiji on my laptop which has a 1440x768 size screen.
> The tall menu I get when I use File --> Import is off the screen at the top
> and bottom and I've been unable to get to it. What am I missing?

Is that on linux? If so that is a very old Java problem for which I have not
been able to find a solution either (other than CTRL+L). The menus are not
scrollable like in windows (and I suppose that in macs too).  :-(

Cheers

Gabriel

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
|

Re: menus are off the screen

ctrueden
Hi Gabriel & everyone,

For what it's worth, I took a quick look at how JavaFX handles menu bars.
And it seems the problem is fixed for that UI paradigm:

https://gist.github.com/ctrueden/6b77cba1ffd29f945a60f4c8915ac16c

The problem _does_ occur with both AWT (used by ImageJ 1.x) and Swing (used
by ImageJ2's rewritten/experimental UI).

So if/when a new ImageJ UI develops using JavaFX [1], this problem will be
moot.

Regards,
Curtis

[1] For those interested, there is one already in development:
http://www.imagejfx.net/, https://github.com/cmongis/imagejfx

--
Curtis Rueden
LOCI software architect - http://loci.wisc.edu/software
ImageJ2 lead, Fiji maintainer - http://imagej.net/User:Rueden
Did you know ImageJ has a forum? http://forum.imagej.net/


On Thu, Apr 14, 2016 at 2:31 AM, Gabriel Landini <[hidden email]>
wrote:

> On Wednesday 13 Apr 2016 21:48:30 you wrote:
> > I just loaded Fiji on my laptop which has a 1440x768 size screen.
> > The tall menu I get when I use File --> Import is off the screen at the
> top
> > and bottom and I've been unable to get to it. What am I missing?
>
> Is that on linux? If so that is a very old Java problem for which I have
> not
> been able to find a solution either (other than CTRL+L). The menus are not
> scrollable like in windows (and I suppose that in macs too).  :-(
>
> Cheers
>
> Gabriel
>
> --
> ImageJ mailing list: http://imagej.nih.gov/ij/list.html
>

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
|

Retrieving a string from the results table

Richard Mort-2
Hi All,

I'm on IJ 1.50i and cannot retrieve strings form the results table with either getResult("Name", i) or getResultString("Name", i). i thought this was a long resolved bug? Any work arounds?

Best
R
--
The University of Edinburgh is a charitable body, registered in
Scotland, with registration number SC005336.

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
|

Re: Retrieving a string from the results table

Michael Schmid
Hi Richard,

it works well for me, both for numeric as well as for text values:
ImageJ 1.50i; Java 1.6.0_65 [64-bit]; Mac OS X 10.6.8

Sample macro (output goes to 'Log'):

run("Set Measurements...", "area mean display redirect=None decimal=3");
run("Blobs (25K)");
setAutoThreshold("Default");
run("Analyze Particles...", "display exclude include");
getResultString("Label",0);
getResultString("Area",0);

Note that the column names are case-sensitive; you get 'null' if the
label is wrong.

Michael
________________________________________________________________
On 2016-04-26 17:49, MORT Richard wrote:
> Hi All,
>
> I'm on IJ 1.50i and cannot retrieve strings form the results table with either getResult("Name", i) or getResultString("Name", i). i thought this was a long resolved bug? Any work arounds?
>
> Best
> R
>

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
|

Re: Retrieving a string from the results table

Rasband, Wayne (NIH/NIMH) [E]
In reply to this post by Richard Mort-2
> On Apr 26, 2016, at 11:49 AM, MORT Richard <[hidden email]> wrote:
>
> Hi All,
>
> I'm on IJ 1.50i and cannot retrieve strings form the results table with either getResult("Name", i) or getResultString("Name", i). i thought this was a long resolved bug? Any work arounds?

Please provide a simple test macro that demonstrates the problem. The following macro works as expected.

-wayne

  columns = 3;
  rows = 4;
  run("Clear Results");
  // create results table of strings
  for (col=1; col<=columns; col++) {
     for (row=0; row<rows; row++) {
        data = "c"+col+"r"+(row+1);
        setResult("C"+col, row, data);
     }
  }
  // retrieve the strings from table
  for (col=1; col<=columns; col++) {
     for (row=0; row<rows; row++)
        print(getResultString("C"+col,row));
  }

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html