Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.programmer > #19149 > unrolled thread
| Started by | bob smith <bob@coolfone.comze.com> |
|---|---|
| First post | 2012-10-05 14:30 -0700 |
| Last post | 2012-10-05 15:23 -0700 |
| Articles | 3 — 2 participants |
Back to article view | Back to comp.lang.java.programmer
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
| From | bob smith <bob@coolfone.comze.com> |
|---|---|
| Date | 2012-10-05 14:30 -0700 |
| Subject | text 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]
| From | "John B. Matthews" <nospam@nospam.invalid> |
|---|---|
| Date | 2012-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]
| From | bob smith <bob@coolfone.comze.com> |
|---|---|
| Date | 2012-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