plist Items

Hello,

I read in this post that plist items can be changed to make an Applescript application run as a daemon and not show up in the dock. Does anyone know what the plist items that need to be changed are?

http://bbs.macscripter.net/viewtopic.php?id=8574

Thanks
Dallas

Try LSUIElement

Thanks Bruce, that worked great.

If anyone is wondering how to add that. Open your info.plist file in the Xcode project and add the following lines;

<key>LSUIElement</key>
<string>1</string>

Dallas