UTI for ScreenSaver, Automator Actions and PreferencePanes?

2010-12-18 Thread Stephane Sudre
Which UTIs are supposed to be used for CFBundleDocumentTypes LSItemContentTypes for : - Screen Savers - Automator Actions - PreferencePanes ? I want to be able to drag and drop them on an application icon. I'm looking into getting rid of the CFBundleTypeExtensions array in my Info.plist.

Re: File name issue with German umlauts

2010-12-18 Thread Uli Kusterer
On 17.12.2010, at 13:22, Ulf Dunkel wrote: The folder was created in Finder. No tricks, just the Finder UI. Well, then I'm out of ideas. It may be that they're using UTF8String instead of fileSystemRepresentation on their string internally, or do a million other things, but it seems it's a

Re: UINavigationController in Popover

2010-12-18 Thread Gordon Apple
I've tried a variety of means to fix this, but the animations seem to collide and the nav controller wins. Thus the delayed invocation in resetting the size to where it should be. I notice that Apple's Pages app simply keeps the popover size the same for all panels, so it avoids the problem.

Re: UTI for ScreenSaver, Automator Actions and PreferencePanes?

2010-12-18 Thread Gregory Weston
Stephane Sudre wrote: Which UTIs are supposed to be used for CFBundleDocumentTypes LSItemContentTypes for : In a terminal window, you can use mdls to show you for any given file. On this 10.6.5. machine, I get: - Screen Savers Something dynamically generated - Automator Actions

binding NSSearchField to an NSArrayController

2010-12-18 Thread davelist
I can't seem to get the NSSearchField bindings to work properly for searching items in an NSTableView (whose columns are bound to an NSArrayController). I have an NSArrayController and its array contains Student objects. Student has a property named last that is the last name and displays in a

NSTextView scrolls to top on Save

2010-12-18 Thread Andy Lee
As a learning experience, I'm trying to make a trivial document-based app: a window with a text view that can edit and save RTF files. What I have now almost works, except that whenever I save changes, the text view scrolls to the top. Needless to say, this would be very annoying in a real

How can I set tab stops in a UITextView?

2010-12-18 Thread Jay Reynolds Freeman
I would like to be able to control what is displayed in a UITextView when the text contains a tab character. (I conjecture that if there is a mechanism to do that, it might be common to both UITextView and NSTextView, so if anyone knows anything about the latter, please speak up.) More