0

Possible Duplicate:
LSUIElement not working

I am using Jar Bundler to create a .app file out of my .jar file. When I launch the app, I do not want a dock icon to show at all.

I have already tried modifying my .plist file to include:

<string>NSUIElement</string>
<key>1</key>

But it does not work... Any help?

Community
  • 1
  • 1
Jakir00
  • 2,023
  • 4
  • 20
  • 32

1 Answers1

4

I think your tags are backwards.

<key>NSUIElement</key>
<string>1</string>

You may also try:

<key>LSUIElement</key>
<string>1</string>
nicerobot
  • 9,145
  • 6
  • 42
  • 44