Tagged Questions

12
votes
1answer
258 views

Can you dynamically assign CFBundleDocumentTypes to your Cocoa application?

Can you dynamically assign CFBundleDocumentTypes to your Cocoa application? Meaning during run time can I assign more extensions for my app to handle. Currently I set some extensions for my app to ...
3
votes
2answers
285 views

Swing: Steal focus from other apps (usability in OS X)

I have an application in java swing which runs in the system tray most of the time. The user can use the Tray Menu to perform several actions. One of those actions is to show the app window. The ...
3
votes
2answers
955 views

LSUIElement not working

I have an application that has LSUIElement = 1 in the Info.plist. When I run the application, a dock item and toplevel menu bar is created for it. Why? EDIT: I was using a library that was calling ...
3
votes
2answers
2k views

How to associate file type with MacOS X App without launching it first?

I would like to associate the last installed version of my Mac OS X application with a certain type of file. A little experimentation shows that the info.plist file seems to be read and interpreted by ...
2
votes
1answer
28 views

How do I find the App Bundle Path from within the info.plist file?

I have a custom version of the WebKit framework that I store in my app bundle. I would like to override the Environmental Variable DYLD_FRAMEWORK_PATH to look inside my app bundle. I am using the ...
2
votes
0answers
131 views

OSX Custom extension icon Association

I'm trying to get my application to display an icon for a custom file extension using the following code: <key>CFBundleDocumentTypes</key> <array> <dict> ...
1
vote
2answers
145 views

writing/reading a single variable in applescript

I'm just starting with applescript in xcode and currently have an app that asks for a folder location, then creates a folder structure. on buttonClick_(sender) set theLocation to choose folder ...
1
vote
1answer
196 views

File Association on OSX for Java Application Bundle w/o using JavaStub

I have an OSX App-Bundle for a Java Application that does not use the Java-Stub, but a Shellscript (registered via Info.plist). I also registered my file extension in the Info.plist: … ...
1
vote
1answer
342 views

Creating a bundle - What's going wrong?

I've got a relatively simple one here. I'm making bundles to live inside the Resources folder of my application (and possibly in the Application Support folder). These bundles will contain template ...
1
vote
2answers
131 views

.app OSX package problems on removable media

So from what little I understand about packaging for Macs, I see that the actual program that launches is the one defined under the CFBundleExecutable key in Info.plist. ...
0
votes
1answer
120 views

Obtain kMDItemKind on files inside bundles returns nil

For some reason I cannot do this on files inside bundles and files residing on different volumes. Am I the only one experiencing this problem, and if not how do I solve it? The Finder seems not ...
0
votes
2answers
370 views

Java OS X - No app icon in dock

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: ...
0
votes
1answer
1k views

Changing the version in the info.plist file so that correct version will show up in mac finder

I am doing maintenance on app that other people created and I want to change the version in the Info.plist file so that when someone selects the app in the finder the correct version will show up. ...