Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.java.programmer > #19149 > unrolled thread

text in the upper left corner

Started bybob smith <bob@coolfone.comze.com>
First post2012-10-05 14:30 -0700
Last post2012-10-05 15:23 -0700
Articles 3 — 2 participants

Back to article view | Back to comp.lang.java.programmer


Contents

  text in the upper left corner bob smith <bob@coolfone.comze.com> - 2012-10-05 14:30 -0700
    Re: text in the upper left corner "John B. Matthews" <nospam@nospam.invalid> - 2012-10-05 18:06 -0400
      Re: text in the upper left corner bob smith <bob@coolfone.comze.com> - 2012-10-05 15:23 -0700

#19149 — text in the upper left corner

Frombob smith <bob@coolfone.comze.com>
Date2012-10-05 14:30 -0700
Subjecttext in the upper left corner
Message-ID<b50714c4-e5d9-4998-a170-abb6463a825d@googlegroups.com>
So, I'm developing a Swing app on Mac.

Unfortunately, there's some text in the upper left corner, and I don't know how to change it.


http://postimage.org/image/wtbjn5bqz/


Anyone know how to change this?

[toc] | [next] | [standalone]


#19153

From"John B. Matthews" <nospam@nospam.invalid>
Date2012-10-05 18:06 -0400
Message-ID<nospam-E36DF1.18064505102012@news.aioe.org>
In reply to#19149
In article <b50714c4-e5d9-4998-a170-abb6463a825d@googlegroups.com>,
 bob smith <bob@coolfone.comze.com> wrote:

> I'm developing a Swing app on Mac.
> 
> Unfortunately, there's some text in the upper left corner, and I 
> don't know how to change it.
> 
> http://postimage.org/image/wtbjn5bqz/
> 
> Anyone know how to change this?

You can change the name from the command line:

  java -Xdock:name="Some Name" ...

or by setting the relevant property early in your program:

  System.setProperty(
    "com.apple.mrj.application.apple.menu.about.name",
    "Some Name");

-- 
John B. Matthews
trashgod at gmail dot com
<http://sites.google.com/site/drjohnbmatthews>

[toc] | [prev] | [next] | [standalone]


#19154

Frombob smith <bob@coolfone.comze.com>
Date2012-10-05 15:23 -0700
Message-ID<9d0b0917-386b-44c8-bf5e-1e91dc4b5e78@googlegroups.com>
In reply to#19153
On Friday, October 5, 2012 5:06:47 PM UTC-5, John B. Matthews wrote:
> In article <b50714c4-e5d9-4998-a170-abb6463a825d@googlegroups.com>,
> 
>  bob smith <bob@coolfone.comze.com> wrote:
> 
> 
> 
> > I'm developing a Swing app on Mac.
> 
> > 
> 
> > Unfortunately, there's some text in the upper left corner, and I 
> 
> > don't know how to change it.
> 
> > 
> 
> > http://postimage.org/image/wtbjn5bqz/
> 
> > 
> 
> > Anyone know how to change this?
> 
> 
> 
> You can change the name from the command line:
> 
> 
> 
>   java -Xdock:name="Some Name" ...
> 
> 
> 
> or by setting the relevant property early in your program:
> 
> 
> 
>   System.setProperty(
> 
>     "com.apple.mrj.application.apple.menu.about.name",
> 
>     "Some Name");
> 
> 
> 
> -- 
> 
> John B. Matthews
> 
> trashgod at gmail dot com
> 
> <http://sites.google.com/site/drjohnbmatthews>

Works great.  Thanks.

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.java.programmer


csiph-web